From patchwork Sun Mar 2 22:18:00 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Linus_L=C3=BCssing?= X-Patchwork-Id: 3900 Return-Path: Received-SPF: None (no SPF record) identity=mailfrom; client-ip=212.227.15.4; helo=mout.web.de; envelope-from=linus.luessing@web.de; receiver=b.a.t.m.a.n@lists.open-mesh.org Received: from mout.web.de (mout.web.de [212.227.15.4]) by open-mesh.org (Postfix) with ESMTPS id 18793602061 for ; Sun, 2 Mar 2014 23:18:11 +0100 (CET) Received: from localhost ([95.211.10.3]) by smtp.web.de (mrweb001) with ESMTPSA (Nemesis) id 0McneT-1Wbd8V3QnJ-00HtKq; Sun, 02 Mar 2014 23:18:11 +0100 From: =?UTF-8?q?Linus=20L=C3=BCssing?= To: b.a.t.m.a.n@lists.open-mesh.org Date: Sun, 2 Mar 2014 23:18:00 +0100 Message-Id: <1393798682-7703-2-git-send-email-linus.luessing@web.de> X-Mailer: git-send-email 1.9.0 In-Reply-To: <1393798682-7703-1-git-send-email-linus.luessing@web.de> References: <1393798682-7703-1-git-send-email-linus.luessing@web.de> MIME-Version: 1.0 X-Provags-ID: V03:K0:Gc5zYHjm+pLMHJykx6qvi5VKq22skuUpDFh49AkpkPVrX7xRd0l eftsJwaDeHlLRGJfeiGnv6hv9yApYMJcKvfVUGncUBbiMbjT+fVuvUru0yPJAUPjrDUAocT gSRQhQLzZZV6W1BcewuD0o3DzXchjH9irqVVqlhs36duGh42Jw5H5tRw1sBfBPTdxn78B6z 7on9L7q5+RSFE1aFXuS3w== Subject: [B.A.T.M.A.N.] [PATCHv2 1/3] batctl: fix wrong header lines number for local translation table 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: Sun, 02 Mar 2014 22:18:12 -0000 A commit in batman-adv has added a second header line to the local translation table output. Introduced by 59cb0861498776c62bd17584c31f34477fa301a0 ("batman-adv: improve local translation table output") Signed-off-by: Linus Lüssing Acked-by: Antonio Quartulli --- debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug.c b/debug.c index d57324d..6836857 100644 --- a/debug.c +++ b/debug.c @@ -45,7 +45,7 @@ const struct debug_table_data batctl_debug_tables[BATCTL_TABLE_NUM] = { .opt_long = "translocal", .opt_short = "tl", .debugfs_name = "transtable_local", - .header_lines = 1, + .header_lines = 2, }, { .opt_long = "transglobal",