Commit e0b10844 authored by Julia Lawall's avatar Julia Lawall Committed by David S. Miller

openvswitch: drop unneeded newline

OVS_NLERR prints a newline at the end of the message string, so the
message string does not need to include a newline explicitly.  Done
using Coccinelle.
Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 62262ffd
...@@ -1266,14 +1266,14 @@ static int parse_nat(const struct nlattr *attr, ...@@ -1266,14 +1266,14 @@ static int parse_nat(const struct nlattr *attr,
/* Do not allow flags if no type is given. */ /* Do not allow flags if no type is given. */
if (info->range.flags) { if (info->range.flags) {
OVS_NLERR(log, OVS_NLERR(log,
"NAT flags may be given only when NAT range (SRC or DST) is also specified.\n" "NAT flags may be given only when NAT range (SRC or DST) is also specified."
); );
return -EINVAL; return -EINVAL;
} }
info->nat = OVS_CT_NAT; /* NAT existing connections. */ info->nat = OVS_CT_NAT; /* NAT existing connections. */
} else if (!info->commit) { } else if (!info->commit) {
OVS_NLERR(log, OVS_NLERR(log,
"NAT attributes may be specified only when CT COMMIT flag is also specified.\n" "NAT attributes may be specified only when CT COMMIT flag is also specified."
); );
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment