diff options
author | ache <ache@FreeBSD.org> | 2000-08-29 21:49:11 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-08-29 21:49:11 +0000 |
commit | e751e78811592941f8f93161f2fb1adef30bf953 (patch) | |
tree | ebe371b775e1d2430b8bee4e24a804a3aa0baaa5 /lib/libtacplus | |
parent | 58751a777acc4db3f45a313f06ef5808d9c40250 (diff) | |
download | FreeBSD-src-e751e78811592941f8f93161f2fb1adef30bf953.zip FreeBSD-src-e751e78811592941f8f93161f2fb1adef30bf953.tar.gz |
strtok -> strsep (no strtok allowed in libraries)
Diffstat (limited to 'lib/libtacplus')
-rw-r--r-- | lib/libtacplus/taclib.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libtacplus/taclib.c b/lib/libtacplus/taclib.c index 6c1fbd2..45ba4d4 100644 --- a/lib/libtacplus/taclib.c +++ b/lib/libtacplus/taclib.c @@ -771,7 +771,7 @@ tac_config(struct tac_handle *h, const char *path) char *fields[4]; int nfields; char msg[ERRSIZE]; - char *host; + char *host, *res; char *port_str; char *secret; char *timeout_str; @@ -817,8 +817,9 @@ tac_config(struct tac_handle *h, const char *path) options_str = fields[3]; /* Parse and validate the fields. */ - host = strtok(host, ":"); - port_str = strtok(NULL, ":"); + res = host; + host = strsep(&res, ":"); + port_str = strsep(&res, ":"); if (port_str != NULL) { port = strtoul(port_str, &end, 10); if (port_str[0] == '\0' || *end != '\0') { |