diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-02-15 08:28:09 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-02-15 08:28:09 +0000 |
commit | 74e8d208aa74e566a0191a420621e6402f5d21ef (patch) | |
tree | aed7243a151e36fc898e985d6cd1c6cc52c2b103 /usr.sbin | |
parent | aa39e3bcd6ceb6dd58d965f6b850e5581a58db64 (diff) |
Add missing break, reported by Jared S. Candelaria.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/lpr/lpr/lpr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/lpr/lpr/lpr.c b/usr.sbin/lpr/lpr/lpr.c index 831758cb882..8533853dbee 100644 --- a/usr.sbin/lpr/lpr/lpr.c +++ b/usr.sbin/lpr/lpr/lpr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lpr.c,v 1.42 2009/10/27 23:59:52 deraadt Exp $ */ +/* $OpenBSD: lpr.c,v 1.43 2013/02/15 08:28:08 mpi Exp $ */ /* $NetBSD: lpr.c,v 1.19 2000/10/11 20:23:52 is Exp $ */ /* @@ -150,6 +150,7 @@ main(int argc, char **argv) if (i > 0) ncopies = i; } + break; case '4': /* troff fonts */ case '3': |