aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/lpr
diff options
context:
space:
mode:
authorGarance A Drosehn <gad@FreeBSD.org>2001-10-09 00:09:46 +0000
committerGarance A Drosehn <gad@FreeBSD.org>2001-10-09 00:09:46 +0000
commit2fd64de22b23dc7e945415039989f20e6e4b45cb (patch)
treec954d0b78c1b615f2bc955bb5e5d4a2e32d21e24 /usr.sbin/lpr
parent0ca7dba57c595d16ee67fc30647733bff9f4d2bf (diff)
Notes
Diffstat (limited to 'usr.sbin/lpr')
-rw-r--r--usr.sbin/lpr/filters/lpf.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.sbin/lpr/filters/lpf.c b/usr.sbin/lpr/filters/lpf.c
index c74d4a779e4a..7c759bb050a9 100644
--- a/usr.sbin/lpr/filters/lpf.c
+++ b/usr.sbin/lpr/filters/lpf.c
@@ -32,14 +32,17 @@
*/
#ifndef lint
-static char copyright[] =
+static const char copyright[] =
"@(#) Copyright (c) 1983, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
+/*
static char sccsid[] = "From: @(#)lpf.c 8.1 (Berkeley) 6/6/93";
-static char id[] = "$FreeBSD$";
+*/
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
/*
@@ -166,7 +169,7 @@ main(int argc, char *argv[])
}
default:
- if (col >= width || !literal && ch < ' ') {
+ if (col >= width || (!literal && ch < ' ')) {
col++;
break;
}