diff options
author | Yi-Hung Wei <yihung.wei@gmail.com> | 2019-08-21 17:16:10 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-08-24 14:18:59 -0700 |
commit | 12c6bc38f99bb168b7f16bdb5e855a51a23ee9ec (patch) | |
tree | b17860ec26a57be097eb46d911f5299f7045647a /net/openvswitch/conntrack.c | |
parent | 12e2e15d837fd7d621d92fc81e3727304a2a2201 (diff) |
openvswitch: Fix log message in ovs conntrack
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>
Diffstat (limited to 'net/openvswitch/conntrack.c')
-rw-r--r-- | net/openvswitch/conntrack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/conntrack.c b/net/openvswitch/conntrack.c index 848c6eb55064..a1852e035ebb 100644 --- a/net/openvswitch/conntrack.c +++ b/net/openvswitch/conntrack.c @@ -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; |