-$Id: CHANGES,v 1.286 2007/02/22 20:16:23 stelian Exp $
+$Id: CHANGES,v 1.287 2008/04/17 15:16:47 stelian Exp $
Changes between versions 0.4b41 and 0.4b42 (released xxxxxxxxxxxxxxx)
=====================================================================
4. Fix EA set failures when restoring immutable files. Thanks
to Andrew Kroeger for the patch.
+5. Fix "mode file too large" errors when restoring huge backups.
+ Thanks to Kenneth Porter <shiva@sewingwitch.com> for the bug
+ report.
+
Changes between versions 0.4b40 and 0.4b41 (released January 2, 2006)
=====================================================================
#ifndef lint
static const char rcsid[] =
- "$Id: dirs.c,v 1.34 2007/02/22 20:16:23 stelian Exp $";
+ "$Id: dirs.c,v 1.35 2008/04/17 15:16:47 stelian Exp $";
#endif /* not lint */
#include <config.h>
fprintf(stderr, "directory mode, owner, and times not set\n");
return;
}
- mf = fopen(modefile, "r");
+ mf = FOPEN(modefile, "r");
if (mf == NULL) {
warn("fopen");
fprintf(stderr, "cannot open mode file %s\n", modefile);
fprintf(stderr, "directory mode, owner, and times not set\n");
return;
}
- mf = fopen(modefile, "r");
+ mf = FOPEN(modefile, "r");
if (mf == NULL) {
warn("fopen");
fprintf(stderr, "cannot open mode file %s\n", modefile);