-$Id: CHANGES,v 1.71 2000/08/19 22:39:35 stelian Exp $
+$Id: CHANGES,v 1.72 2000/08/19 23:15:38 stelian Exp $
Changes between versions 0.4b17 and 0.4b19 (released ?????????????)
===================================================================
or warnings. Thanks to Stephen Atwell
<satwell@urbana.css.mot.com> for the suggestion.
+4. Corrected an off by one calculation which prevented
+ dumping a directory having a 1 character name length.
+ Thanks to Bernhard Erdmann <bernhard.erdmann@gmx.de>
+ for reporting the bug.
+
Changes between versions 0.4b17 and 0.4b18 (released June 30, 2000)
===================================================================
-$Id: THANKS,v 1.32 2000/08/19 22:39:35 stelian Exp $
+$Id: THANKS,v 1.33 2000/08/19 23:15:38 stelian Exp $
Dump and restore were written by the people of the CSRG at the University
of California, Berkeley.
W. Reilly Cooley wcooley@nakedape.cc
Abhijit Dasgupta abhijit@ans.net
Andreas Dilger adilger@home.com
+Bernhard Erdmann bernhard.erdmann@gmx.de
Jason Fearon jasonf@netrider.org.au
Jeremy Fitzhardinge jeremy@goop.org
Eirik Fuller eirik@netcom.com
#ifndef lint
static const char rcsid[] =
- "$Id: optr.c,v 1.10 2000/02/10 09:42:32 stelian Exp $";
+ "$Id: optr.c,v 1.11 2000/08/19 23:15:38 stelian Exp $";
#endif /* not lint */
#include <sys/param.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) + 2 &&
+ strlen(key) > strlen(fs->fs_file) + 1 &&
strncmp(fs->fs_file, key, strlen(fs->fs_file)) == 0 &&
(key[strlen(fs->fs_file)] == '/' ||
fs->fs_file[strlen(fs->fs_file) - 1] == '/')) {