-$Id: CHANGES,v 1.148 2001/11/30 10:14:36 stelian Exp $
+$Id: CHANGES,v 1.149 2001/12/24 12:28:38 stelian Exp $
Changes between versions 0.4b25 and 0.4b26 (released ?????????????????)
=======================================================================
automatic (cron based) full and incremental dumping of
several filesystems on a separate filesystem.
+2. Fixed a off-by-one miscalculation which disabled dumping
+ a one letter subdirectory. Thanks to Chris Siebenmann
+ <cks@utcc.utoronto.ca> for reporting the bug.
+
Changes between versions 0.4b24 and 0.4b25 (released November 17, 2001)
=======================================================================
#ifndef lint
static const char rcsid[] =
- "$Id: optr.c,v 1.27 2001/09/12 09:02:51 stelian Exp $";
+ "$Id: optr.c,v 1.28 2001/12/24 12:28:39 stelian Exp $";
#endif /* not lint */
#include <config.h>
for (pf = table; pf != NULL; pf = pf->pf_next) {
fs = pf->pf_fstab;
if (strlen(fs->fs_file) > size &&
- strlen(key) > strlen(fs->fs_file) + 1 &&
+ strlen(key) > strlen(fs->fs_file) &&
strncmp(fs->fs_file, key, strlen(fs->fs_file)) == 0 &&
(key[strlen(fs->fs_file)] == '/' ||
fs->fs_file[strlen(fs->fs_file) - 1] == '/')) {