From patchwork Sat Dec 7 10:21:22 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antonio Quartulli X-Patchwork-Id: 3650 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=178.209.62.157; helo=s3.neomailbox.net; envelope-from=antonio@meshcoding.com; receiver=b.a.t.m.a.n@lists.open-mesh.org Received: from s3.neomailbox.net (s3.neomailbox.net [178.209.62.157]) by open-mesh.org (Postfix) with ESMTPS id D5FD0602255 for ; Sat, 7 Dec 2013 11:22:06 +0100 (CET) From: Antonio Quartulli To: b.a.t.m.a.n@lists.open-mesh.org Date: Sat, 7 Dec 2013 11:21:22 +0100 Message-Id: <1386411684-2448-2-git-send-email-antonio@meshcoding.com> In-Reply-To: <1386411684-2448-1-git-send-email-antonio@meshcoding.com> References: <1386411684-2448-1-git-send-email-antonio@meshcoding.com> Cc: Antonio Quartulli Subject: [B.A.T.M.A.N.] [PATCH 2/4] batman-adv: fix typ0 in batadv_orig_hardif_seq_print_text() X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.15 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, 07 Dec 2013 10:22:08 -0000 Introduced by f13f960797fd1969b3c0470cc97435ddfb6aecb4 ("batman-adv: add debugfs support to view multiif tables") Signed-off-by: Antonio Quartulli --- originator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/originator.c b/originator.c index 4af1c77..2243003 100644 --- a/originator.c +++ b/originator.c @@ -958,7 +958,7 @@ int batadv_orig_hardif_seq_print_text(struct seq_file *seq, void *offset) hard_iface = batadv_hardif_get_by_netdev(net_dev); if (!hard_iface || !hard_iface->soft_iface) { - seq_puts(seq, "Interface not known to to B.A.T.M.A.N.\n"); + seq_puts(seq, "Interface not known to B.A.T.M.A.N.\n"); goto out; }