diff options
author | Joerg Wunsch <joerg@FreeBSD.org> | 1996-05-05 22:40:51 +0000 |
---|---|---|
committer | Joerg Wunsch <joerg@FreeBSD.org> | 1996-05-05 22:40:51 +0000 |
commit | 5458e2f42165dc9479b4c810c40b6c1656702857 (patch) | |
tree | a2c9a4d920a98c3865b5da51ea401d02253ceae3 /usr.sbin/lpr/lpd/recvjob.c | |
parent | 7458568265c16988eabc831f8ecbd0018d4b6b1e (diff) | |
download | src-5458e2f42165dc9479b4c810c40b6c1656702857.tar.gz src-5458e2f42165dc9479b4c810c40b6c1656702857.zip |
Pull a bunch of fixes from the 4.4BSD-Lite2 branch. It's really
surprising how many trivial errors there have been... :-)
Some more cleanup is needed, but i'd like to separate the Lite2 changes
from other work, that's why this goes into a different commit.
People with serial printers should see whether i have broken the stty-
style printcap options (i hope not).
Inspired by: Sergey Shkonda <serg@bcs1.bcs.zaporizhzhe.ua>
Notes
Notes:
svn path=/head/; revision=15648
Diffstat (limited to 'usr.sbin/lpr/lpd/recvjob.c')
-rw-r--r-- | usr.sbin/lpr/lpd/recvjob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/lpr/lpd/recvjob.c b/usr.sbin/lpr/lpd/recvjob.c index e199af1acb18..35f946f6d206 100644 --- a/usr.sbin/lpr/lpd/recvjob.c +++ b/usr.sbin/lpr/lpd/recvjob.c @@ -39,7 +39,7 @@ static char copyright[] = #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)recvjob.c 8.1 (Berkeley) 6/6/93"; +static char sccsid[] = "@(#)recvjob.c 8.2 (Berkeley) 4/27/95"; #endif /* not lint */ /* @@ -342,7 +342,7 @@ frecverr(msg, va_alist) va_dcl #endif { - extern char *fromb; + extern char fromb[]; va_list ap; #if __STDC__ va_start(ap, msg); |