summaryrefslogtreecommitdiffstats
path: root/src/conntrack.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conntrack.c')
-rw-r--r--src/conntrack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conntrack.c b/src/conntrack.c
index f9df119..07d15f6 100644
--- a/src/conntrack.c
+++ b/src/conntrack.c
@@ -592,13 +592,13 @@ nat_parse(char *arg, int portok, struct ctnl_nat *range)
exit_error(PARAMETER_PROBLEM,
"Port `%s' not valid\n", dash+1);
if (maxport < port)
- // People are stupid.
+ /* People are stupid. */
exit_error(PARAMETER_PROBLEM,
"Port range `%s' funky\n", colon+1);
range->l4min.tcp.port = htons(port);
range->l4max.tcp.port = htons(maxport);
}
- // Starts with a colon? No IP info...
+ /* Starts with a colon? No IP info... */
if (colon == arg)
return;
*colon = '\0';