summaryrefslogtreecommitdiffstats
path: root/sbin
diff options
context:
space:
mode:
Diffstat (limited to 'sbin')
-rw-r--r--sbin/ipfw/nat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/ipfw/nat.c b/sbin/ipfw/nat.c
index c95a625..6bec36c 100644
--- a/sbin/ipfw/nat.c
+++ b/sbin/ipfw/nat.c
@@ -345,11 +345,12 @@ setup_redir_addr(char *buf, int *ac, char ***av)
space = sizeof(struct cfg_redir);
/* Extract local address. */
- if ((sep = strtok(**av, ",")) != NULL) {
+ if (strchr(**av, ',') != NULL) {
struct cfg_spool *spool;
/* Setup LSNAT server pool. */
r->laddr.s_addr = INADDR_NONE;
+ sep = strtok(**av, ",");
while (sep != NULL) {
spool = (struct cfg_spool *)buf;
space += sizeof(struct cfg_spool);
OpenPOWER on IntegriCloud