aboutsummaryrefslogtreecommitdiff
path: root/secchan/netflow.c
diff options
context:
space:
mode:
Diffstat (limited to 'secchan/netflow.c')
-rw-r--r--secchan/netflow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/secchan/netflow.c b/secchan/netflow.c
index 99f3eea4..5d90eea3 100644
--- a/secchan/netflow.c
+++ b/secchan/netflow.c
@@ -118,8 +118,8 @@ open_collector(char *dst)
* can cause segfaults here:
* http://sources.redhat.com/bugzilla/show_bug.cgi?id=5614.
* Using "::" instead of the obvious ":" works around it. */
- host_name = strtok_r(dst, "::", &save_ptr);
- port_string = strtok_r(NULL, "::", &save_ptr);
+ host_name = strtok_r(dst, ":", &save_ptr);
+ port_string = strtok_r(NULL, ":", &save_ptr);
if (!host_name) {
ovs_error(0, "%s: bad peer name format", dst);
return -EAFNOSUPPORT;