diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-02-10 04:19:56 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-02-10 04:19:56 +0000 |
commit | adaa3602ba68f1eeb1d83b4a08642ea1275c55f9 (patch) | |
tree | 6ed9bfcbb3a2a52f07d9e21827e745d64757621c /sbin/dump/main.c | |
parent | f4c7ec8de009e09634eb0390f5a19a2efd4a7472 (diff) |
Make dump(8) really honor -a. Fix up formatting in man page and remove
duplicate entry.
Diffstat (limited to 'sbin/dump/main.c')
-rw-r--r-- | sbin/dump/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dump/main.c b/sbin/dump/main.c index 7fc6941f5f8..47013b59937 100644 --- a/sbin/dump/main.c +++ b/sbin/dump/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.13 1997/02/04 10:06:20 deraadt Exp $ */ +/* $OpenBSD: main.c,v 1.14 1997/02/10 04:19:55 millert Exp $ */ /* $NetBSD: main.c,v 1.8 1996/03/15 22:39:32 scottr Exp $ */ /*- @@ -126,7 +126,7 @@ main(argc, argv) usage(); obsolete(&argc, &argv); - while ((ch = getopt(argc, argv, "0123456789B:b:cd:f:h:ns:T:uWw")) != -1) + while ((ch = getopt(argc, argv, "0123456789aB:b:cd:f:h:ns:T:uWw")) != -1) switch (ch) { /* dump level */ case '0': case '1': case '2': case '3': case '4': |