openvswitch: drop unneeded newline
authorJulia Lawall <Julia.Lawall@lip6.fr>
Wed, 27 Dec 2017 14:51:38 +0000 (15:51 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 2 Jan 2018 18:49:53 +0000 (13:49 -0500)
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: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/openvswitch/conntrack.c

index b27c5c6d9cab305a58d04608f38252eea034c32e..62f36cc938cacfa4be4439dd86edf87b08fe49bc 100644 (file)
@@ -1266,14 +1266,14 @@ static int parse_nat(const struct nlattr *attr,
                /* Do not allow flags if no type is given. */
                if (info->range.flags) {
                        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;
                }
                info->nat = OVS_CT_NAT;   /* NAT existing connections. */
        } else if (!info->commit) {
                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;
        }