diff options
author | Alexander Hall <halex@cvs.openbsd.org> | 2014-07-11 16:01:42 +0000 |
---|---|---|
committer | Alexander Hall <halex@cvs.openbsd.org> | 2014-07-11 16:01:42 +0000 |
commit | 5a20f405f353b48380275914477659c7b2d2f871 (patch) | |
tree | e3f9ab6cfe62883435f49d665c12c79c4ac4929e /include | |
parent | e1e97a7aafe936ad1f3926e07355776eb3517041 (diff) |
make dump support DUIDs for command line arguments and /etc/dumpdates (using
the new shiny -U switch)
dumpdates part originating from, and discussed with, Maximilian Fillinger
seems reasonable to krw@, "get it in" deraadt@
Diffstat (limited to 'include')
-rw-r--r-- | include/protocols/dumprestore.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/protocols/dumprestore.h b/include/protocols/dumprestore.h index 7789a84c55f..9a94a0c9e1e 100644 --- a/include/protocols/dumprestore.h +++ b/include/protocols/dumprestore.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dumprestore.h,v 1.9 2009/12/15 13:11:42 halex Exp $ */ +/* $OpenBSD: dumprestore.h,v 1.10 2014/07/11 16:01:40 halex Exp $ */ /* $NetBSD: dumprestore.h,v 1.14 2005/12/26 19:01:47 perry Exp $ */ /* @@ -152,8 +152,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 "%-18s %c %s" /* for printf */ /* name, level, ctime(date) */ -#define DUMPINFMT "%16s %c %[^\n]\n" /* inverse for scanf */ +#define DUMPINFMT "%18s %c %[^\n]\n" /* inverse for scanf */ #endif /* !_PROTOCOLS_DUMPRESTORE_H_ */ |