diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-02-25 17:37:21 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-02-25 17:37:21 +0000 |
commit | d9d58e3b4c678aac7f02d1bae394f4a59e62fcb5 (patch) | |
tree | dca4a9cca9d3084c061a9f4e8490c0d33ad295d5 /sbin | |
parent | dadb32c77e4256f3f216d4eb1ca6aac315d8427c (diff) |
-b option was being ignored when used in conjunction with -d.
NetBSD PR #3254, fix from Juergen Hannken-Illjes <hannken@eis.cs.tu-bs.de>.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/dump/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/dump/main.c b/sbin/dump/main.c index 47013b59937..13dd46f06fe 100644 --- a/sbin/dump/main.c +++ b/sbin/dump/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.14 1997/02/10 04:19:55 millert Exp $ */ +/* $OpenBSD: main.c,v 1.15 1997/02/25 17:37:20 millert Exp $ */ /* $NetBSD: main.c,v 1.8 1996/03/15 22:39:32 scottr Exp $ */ /*- @@ -145,6 +145,7 @@ main(argc, argv) maxbsize/1024); exit(X_ABORT); } + bflag = 1; break; case 'c': /* Tape is cart. not 9-track */ |