-$Id: CHANGES,v 1.195 2002/09/02 12:43:12 stelian Exp $
+$Id: CHANGES,v 1.196 2002/10/07 19:27:35 stelian Exp $
Changes between versions 0.4b31 and 0.4b32 (released ?????????????)
===================================================================
this for proper operation. Thanks to Dirk Traenapp
<dtraenapp@users.sourceforge.net> for reporting this.
+5. Fixed a bug causing Dump to stop and report an error if an
+ inode number in the exclude file was followed by some amount
+ of whitespace. Thanks to Jeffrey Sofferin
+ <sofferin@users.sourceforge.net> for reporting this bug.
+
Changes between versions 0.4b30 and 0.4b31 (released July 30, 2002)
===================================================================
-$Id: THANKS,v 1.67 2002/09/02 12:44:03 stelian Exp $
+$Id: THANKS,v 1.68 2002/10/07 19:27:35 stelian Exp $
Dump and restore were written by the people of the CSRG at the University
of California, Berkeley.
Chris Siebenmann cks@utcc.utoronto.ca
Paul Slootman paul@debian.org
Bob Snyder rsnyder@janet.advsys.com
+Jeffrey Sofferin sofferin@users.sourceforge.net
Gabriel Somlo somlo@cs.colostate.edu
Clemens Stiglechner a9401816@unet.univie.ac.at
Matti Taskinen mkt@rni.helsinki.fi
#ifndef lint
static const char rcsid[] =
- "$Id: main.c,v 1.75 2002/09/02 12:43:12 stelian Exp $";
+ "$Id: main.c,v 1.76 2002/10/07 19:27:36 stelian Exp $";
#endif /* not lint */
#include <config.h>
unsigned long inod;
inod = strtoul(ino, &r, 10);
- if (*r != '\0' || inod <= ROOTINO) {
+ if (( *r != '\0' && !isspace(*r) ) || inod <= ROOTINO) {
msg("Invalid inode argument %s\n", ino);
msg("The ENTIRE dump is aborted.\n");
exit(X_STARTUP);