1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- coda-5.3.19/coda-src/venus/fso_cachefile.cc 2001-05-17 16:26:53.000000000 -0500
+++ coda-5.3.19/coda-src/venus/fso_cachefile.cc.new 2002-10-23 16:12:33.000000000 -0500
@@ -132,7 +132,7 @@
/* Must be called from within a transaction! Assume caller has done
RVMLIB_REC_OBJECT() */
-void CacheFile::Create(int newlength = 0)
+void CacheFile::Create(int newlength)
{
LOG(10, ("CacheFile::Create: %s, %d\n", name, newlength));
@@ -183,7 +183,7 @@
return 0;
}
-int CacheFile::Copy(char *destname, ino_t *ino, int recovering = 0)
+int CacheFile::Copy(char *destname, ino_t *ino, int recovering)
{
LOG(10, ("CacheFile::Copy: from %s, %d, %d/%d, to %s\n",
name, inode, validdata, length, destname));
|