summaryrefslogtreecommitdiffstats
path: root/usr.sbin/lpr
diff options
context:
space:
mode:
authorjoe <joe@FreeBSD.org>2000-01-19 14:25:08 +0000
committerjoe <joe@FreeBSD.org>2000-01-19 14:25:08 +0000
commit34f25d690773df811b1f6911ffaa3f143181e1af (patch)
tree6c84c98a5d8443ded5af7302b10460ff4e853992 /usr.sbin/lpr
parent74366b47ef5230c1b444cd0eb19a8df7ffb03c10 (diff)
downloadFreeBSD-src-34f25d690773df811b1f6911ffaa3f143181e1af.zip
FreeBSD-src-34f25d690773df811b1f6911ffaa3f143181e1af.tar.gz
It's not been possible to configure a print server running lpd,
with remote hosts feeding it, so that some hosts have their header pages supressed and some don't. This is because lpd doesn't know how to rewrite a print job before forwarding it to a remote lpd. In particular this causes problems with p rinters that contain their own lpd, eg. HP jet direct cards, because they can't suppress headers. It's not possible to have headers supressed by putting 'sh' in any printcap in the lpd chain, it is up to the originating lpr to have a '-h' option specified at run time. Lpr has been modified to allow _it_ to honour the 'sh' flag in the local print cap. This allows the administrator to switch off headers for a particular printer (on a particular host) irrespective of whether that printer is local to the machine or remote. This doesn't break anything, because in the case of a remote printer the 'sh' flag would have had no meaning, in the case of the local printer it would have been on anyway. Submitted by: Scott James Remnant <scott@pavilion.net>
Diffstat (limited to 'usr.sbin/lpr')
-rw-r--r--usr.sbin/lpr/lpr/lpr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/lpr/lpr/lpr.c b/usr.sbin/lpr/lpr/lpr.c
index 6a1a099..1cdb374 100644
--- a/usr.sbin/lpr/lpr/lpr.c
+++ b/usr.sbin/lpr/lpr/lpr.c
@@ -320,7 +320,7 @@ main(argc, argv)
seteuid(uid);
card('H', host);
card('P', person);
- if (hdr) {
+ if (hdr && !pp->no_header) {
if (jobname == NULL) {
if (argc == 0)
jobname = "stdin";
OpenPOWER on IntegriCloud