From patchwork Sun Nov 6 10:16:34 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jean-Jacques Sarton X-Patchwork-Id: 16805 Return-Path: X-Original-To: patchwork@open-mesh.org Delivered-To: patchwork@open-mesh.org Received: from open-mesh.org (localhost [IPv6:::1]) by open-mesh.org (Postfix) with ESMTP id 40A6682413; Sun, 6 Nov 2016 11:23:51 +0100 (CET) Authentication-Results: open-mesh.org; dmarc=none header.from=t-online.de Received-SPF: None (no SPF record) identity=mailfrom; client-ip=109.75.223.223; helo=jjsarton.de; envelope-from=jj@jjsarton.de; receiver=b.a.t.m.a.n@lists.open-mesh.org Authentication-Results: open-mesh.org; dmarc=none header.from=t-online.de X-Greylist: delayed 429 seconds by postgrey-1.35 at open-mesh.org; Sun, 06 Nov 2016 11:23:48 CET Received: from jjsarton.de (223-223-075-109.ip-addr.inexio.net [109.75.223.223]) by open-mesh.org (Postfix) with ESMTPS id B17D080308 for ; Sun, 6 Nov 2016 11:23:48 +0100 (CET) Received: by jjsarton.de (Postfix, from userid 1000) id 17146303959; Sun, 6 Nov 2016 11:16:39 +0100 (CET) From: Jean-Jacques Sarton To: b.a.t.m.a.n@lists.open-mesh.org Date: Sun, 6 Nov 2016 11:16:34 +0100 Message-Id: <1478427394-11607-1-git-send-email-jj.sarton@t-online.de> X-Mailer: git-send-email 2.7.4 Subject: [B.A.T.M.A.N.] [[PATCH] Alfred not working within network name space add static to function declaration X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking Errors-To: b.a.t.m.a.n-bounces@lists.open-mesh.org Sender: "B.A.T.M.A.N" Fix scope of function to static Signed-off-by: Jean-Jacques Sarton --- batadv_query.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batadv_query.c b/batadv_query.c index dc8a042..69f5a48 100644 --- a/batadv_query.c +++ b/batadv_query.c @@ -136,7 +136,7 @@ int ipv6_to_mac(const struct in6_addr *addr, struct ether_addr *mac) return 0; } -int batadv_interface_check_debugfs(const char *mesh_iface) +static int batadv_interface_check_debugfs(const char *mesh_iface) { char full_path[MAX_PATH + 1]; FILE *f;