16 characters for the device name in /etc/dumpdates is not long

enough, particularly when using vinum.  Allow 32 characters
(arbitrary, I know) instead.

PR:	bin/11433
This commit is contained in:
Jacques Vidrine 1999-05-08 01:08:56 +00:00
parent dd5288f3a5
commit 958ab463b8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=46663

View file

@ -105,8 +105,8 @@ union u_spcl {
#define DR_NEWHEADER 0x0001 /* new format tape header */
#define DR_NEWINODEFMT 0x0002 /* new format inodes on tape */
#define DUMPOUTFMT "%-16s %c %s" /* for printf */
#define DUMPOUTFMT "%-32s %c %s" /* for printf */
/* name, level, ctime(date) */
#define DUMPINFMT "%16s %c %[^\n]\n" /* inverse for scanf */
#define DUMPINFMT "%32s %c %[^\n]\n" /* inverse for scanf */
#endif /* !_DUMPRESTORE_H_ */