diff options
author | Marek Lindner <lindner_marek@yahoo.de> | 2012-03-17 03:28:34 -0400 |
---|---|---|
committer | Antonio Quartulli <ordex@autistici.org> | 2012-05-11 07:56:06 -0400 |
commit | fefa53297112f85d99d77374c745e247ba78831c (patch) | |
tree | 3328f0f112b75b3342f9b05560fcee82ab0e5dd7 | |
parent | 13b2541b11b1df346805f0869c843635ceb0229f (diff) |
batman-adv: fix checkpatch string complaint
Regression introduced by: f76d019194e0a88c57371df169ecc979690a04c2
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
-rw-r--r-- | net/batman-adv/bat_iv_ogm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/batman-adv/bat_iv_ogm.c b/net/batman-adv/bat_iv_ogm.c index bafb47370b4c..abd10c490fd9 100644 --- a/net/batman-adv/bat_iv_ogm.c +++ b/net/batman-adv/bat_iv_ogm.c | |||
@@ -1061,8 +1061,8 @@ static void bat_iv_ogm_process(const struct ethhdr *ethhdr, | |||
1061 | 1061 | ||
1062 | if (batman_ogm_packet->flags & NOT_BEST_NEXT_HOP) { | 1062 | if (batman_ogm_packet->flags & NOT_BEST_NEXT_HOP) { |
1063 | bat_dbg(DBG_BATMAN, bat_priv, | 1063 | bat_dbg(DBG_BATMAN, bat_priv, |
1064 | "Drop packet: ignoring all packets not forwarded from " | 1064 | "Drop packet: ignoring all packets not forwarded from the best next hop (sender: %pM)\n", |
1065 | "the best next hop (sender: %pM)\n", ethhdr->h_source); | 1065 | ethhdr->h_source); |
1066 | return; | 1066 | return; |
1067 | } | 1067 | } |
1068 | 1068 | ||