diff options
author | nectar <nectar@FreeBSD.org> | 1999-05-08 01:08:56 +0000 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 1999-05-08 01:08:56 +0000 |
commit | b0c2561d1714549eafca12788bdfb3f78597c7de (patch) | |
tree | d3d477bb55fdd427b53b90c660f53edfff008be5 /include | |
parent | 228630557e264fa21523fca2b99e3adb69518f69 (diff) | |
download | FreeBSD-src-b0c2561d1714549eafca12788bdfb3f78597c7de.zip FreeBSD-src-b0c2561d1714549eafca12788bdfb3f78597c7de.tar.gz |
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
Diffstat (limited to 'include')
-rw-r--r-- | include/protocols/dumprestore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/protocols/dumprestore.h b/include/protocols/dumprestore.h index 9721082..98704e7 100644 --- a/include/protocols/dumprestore.h +++ b/include/protocols/dumprestore.h @@ -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_ */ |