diff options
author | obrien <obrien@FreeBSD.org> | 1998-04-17 17:25:49 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1998-04-17 17:25:49 +0000 |
commit | af5311ec6fb8f4581b23d7be7cd3eb15bc3b56ce (patch) | |
tree | 09749517fe8c83f3c23ca36942ba65cb9df2c4dd /usr.sbin/lpr | |
parent | b829336353af799dc56bc1ca8e5dae1c001e29f1 (diff) | |
download | FreeBSD-src-af5311ec6fb8f4581b23d7be7cd3eb15bc3b56ce.zip FreeBSD-src-af5311ec6fb8f4581b23d7be7cd3eb15bc3b56ce.tar.gz |
Make ``-h'' follow the manpage, and suppress the burst page reguardless of
the number of ``-h'' given.
Diffstat (limited to 'usr.sbin/lpr')
-rw-r--r-- | usr.sbin/lpr/lpr/lpr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/lpr/lpr/lpr.c b/usr.sbin/lpr/lpr/lpr.c index a471f6c..56fdaa6 100644 --- a/usr.sbin/lpr/lpr/lpr.c +++ b/usr.sbin/lpr/lpr/lpr.c @@ -48,7 +48,7 @@ static const char copyright[] = static char sccsid[] = "@(#)from: lpr.c 8.4 (Berkeley) 4/28/95"; #endif static const char rcsid[] = - "$Id: lpr.c,v 1.22 1997/12/02 20:46:10 wollman Exp $"; + "$Id: lpr.c,v 1.23 1997/12/06 17:55:07 jdp Exp $"; #endif /* not lint */ /* @@ -204,8 +204,8 @@ main(argc, argv) format = 'r'; break; - case 'h': /* toggle want of header page */ - hdr = !hdr; + case 'h': /* nulifiy header page */ + hdr = 0; break; case 'i': /* indent output */ |