From f9584f93be33ee69912708e6402809f47703a5d5 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 11 Nov 1998 23:31:37 +0000 Subject: J.F.'s latest printer fixes plus his gcc -picky fix for web/cgi.c Jeremy. (This used to be commit bd4e2972f50cafd932a5c915cdeeef7eedda07cc) --- source3/printing/printing.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source3/printing/printing.c') diff --git a/source3/printing/printing.c b/source3/printing/printing.c index 2aecb58047..09a574c2c9 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -323,8 +323,10 @@ static BOOL parse_lpq_lprng(char *line,print_queue_struct *buf,BOOL first) char *tokarr[LPRNG_MAXTOK]; char *cptr; int num_tok = 0; + pstring line2; - tokarr[0] = strtok(line," \t"); + pstrcpy(line2,line); + tokarr[0] = strtok(line2," \t"); num_tok++; while (((tokarr[num_tok] = strtok(NULL," \t")) != NULL) && (num_tok < LPRNG_MAXTOK)) { -- cgit