From patchwork Sat May 7 07:50:44 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sven Eckelmann X-Patchwork-Id: 16104 X-Patchwork-Delegate: mareklindner@neomailbox.ch 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 8757C82239; Sat, 7 May 2016 09:50:53 +0200 (CEST) Authentication-Results: open-mesh.org; dmarc=none header.from=narfation.org Authentication-Results: open-mesh.org; dkim=fail reason="verification failed; unprotected key" header.d=narfation.org header.i=@narfation.org header.b=EfCTFcJe; dkim-adsp=fail (unprotected policy); dkim-atps=neutral Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=79.140.41.39; helo=v3-1039.vlinux.de; envelope-from=sven@narfation.org; receiver=b.a.t.m.a.n@lists.open-mesh.org Authentication-Results: open-mesh.org; dmarc=pass header.from=narfation.org Received: from v3-1039.vlinux.de (narfation.org [79.140.41.39]) by open-mesh.org (Postfix) with ESMTPS id A2F1981CCA for ; Sat, 7 May 2016 09:50:51 +0200 (CEST) Received: from sven-desktop.home.narfation.org (p200300C593C6A8FD0000000000002E16.dip0.t-ipconnect.de [IPv6:2003:c5:93c6:a8fd::2e16]) by v3-1039.vlinux.de (Postfix) with ESMTPSA id 08F5411000C; Sat, 7 May 2016 09:50:50 +0200 (CEST) Authentication-Results: v3-1039.vlinux.de; dmarc=none header.from=narfation.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=narfation.org; s=20121; t=1462607451; bh=05OWKNiGFK+1kfEEUNE77JhWplq+5Vz3unqsc21rSLs=; h=From:To:Cc:Subject:Date:From; b=EfCTFcJeF4B5uBiknjF896EjTgkDf9z09dICgThk03ekFWmvRq4SAYvU0mNaD+p/W J/OTUoWdyVNMKXvsMEdIiJwYK5DKWbA0HAi8q/A5L0teNfjdvm6kB4NhyVNPgJx+Li jBQYgtMaXFOevluVqRUy04QQDsemvdmcnYOTySVE= From: Sven Eckelmann To: b.a.t.m.a.n@lists.open-mesh.org Date: Sat, 7 May 2016 09:50:44 +0200 Message-Id: <1462607444-16656-1-git-send-email-sven@narfation.org> X-Mailer: git-send-email 2.8.1 Subject: [B.A.T.M.A.N.] [PATCH maint] batman-adv: Add missing include for batadv_v_neigh_is_sob 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" batadv_v_neigh_is_sob started to use false which is defined in linux/stddef.h. Fixes: 036aa7b7181e ("batman-adv: Avoid nullptr derefence in batadv_v_neigh_is_sob") Signed-off-by: Sven Eckelmann --- net/batman-adv/bat_v.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/batman-adv/bat_v.c b/net/batman-adv/bat_v.c index 2bcb29b..5b30a11 100644 --- a/net/batman-adv/bat_v.c +++ b/net/batman-adv/bat_v.c @@ -27,6 +27,7 @@ #include #include #include +#include #include #include