From patchwork Sat Mar 17 07:28:34 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marek Lindner X-Patchwork-Id: 1613 Return-Path: Received: from nm19-vm0.bullet.mail.ukl.yahoo.com (nm19-vm0.bullet.mail.ukl.yahoo.com [217.146.183.113]) by open-mesh.org (Postfix) with SMTP id F41456007A0 for ; Sat, 17 Mar 2012 08:29:37 +0100 (CET) Authentication-Results: open-mesh.org; dkim=pass (1024-bit key) header.i=@yahoo.de; dkim-adsp=none Received: from [217.146.183.182] by nm19.bullet.mail.ukl.yahoo.com with NNFMP; 17 Mar 2012 07:29:37 -0000 Received: from [77.238.184.65] by tm13.bullet.mail.ukl.yahoo.com with NNFMP; 17 Mar 2012 07:29:37 -0000 Received: from [127.0.0.1] by smtp134.mail.ukl.yahoo.com with NNFMP; 17 Mar 2012 07:29:37 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1331969377; bh=Ak5SGoUs00cG+0Q7WCaVxI/rhUyvBpvOpuMKzuB0CM0=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:From:To:Cc:Subject:Date:Message-Id:X-Mailer:In-Reply-To:References; b=nNun/qYsxRyYNY+RgaAdxY0owF5AqYqfxcEB1BEZVpzOwvWTfQMHpCxmPIUXpqheyd21hATrDdtsiX/ZBmkUEz66zF+CNII0irwLF9ZFeOJIgILILBE28fEFuukChiwCkOaj9fsIDHYjlIc1JKdW3700QuM0QEXdPjCvvAxblYY= X-Yahoo-Newman-Id: 548116.22335.bm@smtp134.mail.ukl.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: pI7XthcVM1n2uGGeWoSySqLkMooDLoPh.SQK5NRBr4sCAPg a1VqIfMw_3YBGCMjzKZKsE26JBRSBKl5V7nsMC6SDc4R5S2O.D4ljFVvC7vM _NJ_o3HIdW.SUH1ctOjRvNRg7UGXQ5swKacx4p0HL5LRFzaCAAetJWEHSxsB ZbBFiRurY6w514fZxeQMNpXcBulZCmmUG4DFoGA55GrAW5QdfkACSItDK6Tj .f8TMpb77PqB91Ee2SXju5nwSHC3i4JcbtNN0Um1rVwgLqXRw.pjezLeq.7v 47xqwALxMWcyBQ0WcYs5vr.oLrlQGHxXRnNf7a9fEXen9_7TMs7PW11dR35Q SgMKG_52gcmP0nQlbe0cH0zDIPAx1LUdRFfHY81ROhVd1PhTHN0jcDjQ5NJC 3zTiM X-Yahoo-SMTP: tW.h3tiswBBMXO2coYcbPigGD5Lt6zY_.Zc- Received: from localhost (lindner_marek@119.236.110.45 with plain) by smtp134.mail.ukl.yahoo.com with SMTP; 17 Mar 2012 07:29:36 +0000 GMT From: Marek Lindner To: b.a.t.m.a.n@lists.open-mesh.org Date: Sat, 17 Mar 2012 15:28:34 +0800 Message-Id: <1331969315-27535-3-git-send-email-lindner_marek@yahoo.de> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1331969315-27535-1-git-send-email-lindner_marek@yahoo.de> References: <1331969315-27535-1-git-send-email-lindner_marek@yahoo.de> Cc: Marek Lindner Subject: [B.A.T.M.A.N.] [PATCH 3/4] batman-adv: fix checkpatch string complaint X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.13 Precedence: list Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Mar 2012 07:29:38 -0000 Regression introduced by: f76d019194e0a88c57371df169ecc979690a04c2 Signed-off-by: Marek Lindner --- bat_iv_ogm.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bat_iv_ogm.c b/bat_iv_ogm.c index fa41307..994369d 100644 --- a/bat_iv_ogm.c +++ b/bat_iv_ogm.c @@ -1061,8 +1061,8 @@ static void bat_iv_ogm_process(const struct ethhdr *ethhdr, if (batman_ogm_packet->flags & NOT_BEST_NEXT_HOP) { bat_dbg(DBG_BATMAN, bat_priv, - "Drop packet: ignoring all packets not forwarded from " - "the best next hop (sender: %pM)\n", ethhdr->h_source); + "Drop packet: ignoring all packets not forwarded from the best next hop (sender: %pM)\n", + ethhdr->h_source); return; }