diff options
author | Martin Pool <mbp@samba.org> | 2002-02-26 23:22:02 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2002-02-26 23:22:02 +0000 |
commit | 570cdd8529cdc14cc8be4206ebd23c995d6954df (patch) | |
tree | 1af8023051fa7b85b7e38fc30fdc26d8f2c758e4 /source3/printing | |
parent | 361d0f9f7b5c2568e64123b72c602aa6a07b66e5 (diff) | |
download | samba-570cdd8529cdc14cc8be4206ebd23c995d6954df.tar.gz samba-570cdd8529cdc14cc8be4206ebd23c995d6954df.tar.bz2 samba-570cdd8529cdc14cc8be4206ebd23c995d6954df.zip |
FIXME: Use next_token rather than strtok!
(This used to be commit d56b8a30c5ca55b718ad706875aa6579a48a0768)
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/lpq_parse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/printing/lpq_parse.c b/source3/printing/lpq_parse.c index ddad82e1b9..b513806473 100644 --- a/source3/printing/lpq_parse.c +++ b/source3/printing/lpq_parse.c @@ -126,6 +126,7 @@ static BOOL parse_lpq_bsd(char *line,print_queue_struct *buf,BOOL first) } #endif /* OSF1 */ + /* FIXME: Use next_token rather than strtok! */ tok[0] = strtok(line2," \t"); count++; |