-$Id: CHANGES,v 1.120 2001/07/18 09:50:48 stelian Exp $
+$Id: CHANGES,v 1.121 2001/07/18 11:46:31 stelian Exp $
Changes between versions 0.4b22 and 0.4b23 (released ????????????)
==================================================================
Patch contributed by Helmut Jarausch
<jarausch@igpm.rwth-aachen.de>.
+7. Fixed a bug in reading the operator typed file/tape path for
+ the next volume in restore.
+
Changes between versions 0.4b21 and 0.4b22 (released May 12, 2001)
==================================================================
#ifndef lint
static const char rcsid[] =
- "$Id: tape.c,v 1.40 2001/06/18 10:58:28 stelian Exp $";
+ "$Id: tape.c,v 1.41 2001/07/18 11:46:31 stelian Exp $";
#endif /* not lint */
#include <config.h>
return;
}
if (buf[0] != '\n') {
+ char *pos;
(void) strncpy(magtape, buf, sizeof(magtape));
magtape[sizeof(magtape) - 1] = '\0';
+ if ((pos = strchr(magtape, '\n')))
+ magtape[pos - magtape] = '\0';
}
}
#ifdef RRESTORE