openvswitch: Fix log message in ovs conntrack
authorYi-Hung Wei <yihung.wei@gmail.com>
Thu, 22 Aug 2019 00:16:10 +0000 (17:16 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sat, 24 Aug 2019 21:18:59 +0000 (14:18 -0700)
Fixes: 06bd2bdf19d2 ("openvswitch: Add timeout support to ct action")
Signed-off-by: Yi-Hung Wei <yihung.wei@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/openvswitch/conntrack.c

index 848c6eb..a1852e0 100644 (file)
@@ -1565,7 +1565,7 @@ static int parse_ct(const struct nlattr *attr, struct ovs_conntrack_info *info,
                case OVS_CT_ATTR_TIMEOUT:
                        memcpy(info->timeout, nla_data(a), nla_len(a));
                        if (!memchr(info->timeout, '\0', nla_len(a))) {
-                               OVS_NLERR(log, "Invalid conntrack helper");
+                               OVS_NLERR(log, "Invalid conntrack timeout");
                                return -EINVAL;
                        }
                        break;