summaryrefslogtreecommitdiff
path: root/lib/libtacplus
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2000-08-29 21:49:11 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2000-08-29 21:49:11 +0000
commitc51599104027f5a104dcd4bb3571a4bb44fa7e5e (patch)
treea7c9979321aa0ce6a8f96f65fcfdd986ea8361b9 /lib/libtacplus
parentd9e630b5920d738f2b4385c88ff3f17b899b1dd1 (diff)
Notes
Diffstat (limited to 'lib/libtacplus')
-rw-r--r--lib/libtacplus/taclib.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libtacplus/taclib.c b/lib/libtacplus/taclib.c
index 6c1fbd213e53..45ba4d4ada84 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') {