diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-04-04 18:41:47 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-04-04 18:41:47 +0000 |
commit | 4cb76026747c1c4f9db0090c18888232ece673b0 (patch) | |
tree | 602a27b829dddac7decfb4066bdb458d30c95786 /usr.sbin/lpr/lpd | |
parent | 18423be53229bf49c861cdd4941144cdb72d7585 (diff) |
when mktemp() is hard to fix, use 10 X
Diffstat (limited to 'usr.sbin/lpr/lpd')
-rw-r--r-- | usr.sbin/lpr/lpd/printjob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/lpr/lpd/printjob.c b/usr.sbin/lpr/lpd/printjob.c index 5c15e12b6fb..299e37aeca1 100644 --- a/usr.sbin/lpr/lpd/printjob.c +++ b/usr.sbin/lpr/lpd/printjob.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printjob.c,v 1.10 1996/11/03 23:24:10 millert Exp $ */ +/* $OpenBSD: printjob.c,v 1.11 1997/04/04 18:41:44 deraadt Exp $ */ /* $NetBSD: printjob.c,v 1.9.4.3 1996/07/12 22:31:39 jtc Exp $ */ /* @@ -111,7 +111,7 @@ static char length[10] = "-l"; /* page length in lines */ static char logname[32]; /* user's login name */ static char pxlength[10] = "-y"; /* page length in pixels */ static char pxwidth[10] = "-x"; /* page width in pixels */ -static char tempfile[] = "errsXXXXXX"; /* file name for filter output */ +static char tempfile[] = "errsXXXXXXXXXX"; /* file name for filter output */ static char width[10] = "-w"; /* page width in static characters */ static void abortpr __P((int)); |