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 | d56b8a30c5ca55b718ad706875aa6579a48a0768 (patch) | |
tree | f7419dec3ef7b682544e5f771ac7cb62a4000a8a | |
parent | c849e93392e3206b010949566a65a339f5064031 (diff) | |
download | samba-d56b8a30c5ca55b718ad706875aa6579a48a0768.tar.gz samba-d56b8a30c5ca55b718ad706875aa6579a48a0768.tar.xz samba-d56b8a30c5ca55b718ad706875aa6579a48a0768.zip |
FIXME: Use next_token rather than strtok!
-rw-r--r-- | source/printing/lpq_parse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/printing/lpq_parse.c b/source/printing/lpq_parse.c index ddad82e1b9f..b5138064739 100644 --- a/source/printing/lpq_parse.c +++ b/source/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++; |