From patchwork Fri May 25 06:55:55 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sven Eckelmann X-Patchwork-Id: 1916 Return-Path: Received: from v3-1039.vlinux.de (narfation.org [79.140.41.39]) by open-mesh.org (Postfix) with ESMTPS id 8906C6007A9 for ; Fri, 25 May 2012 08:56:05 +0200 (CEST) Received: from sven-desktop.home.narfation.org (drsd-4d05f66a.pool.mediaWays.net [77.5.246.106]) by v3-1039.vlinux.de (Postfix) with ESMTPSA id 86AE2940E5; Fri, 25 May 2012 08:59:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=narfation.org; s=mail; t=1337929141; bh=Uz3DryGaERYDZSA+lUMTPV6hBojuTzV01LD/U4MoIOA=; h=From:To:Cc:Subject:Date:Message-Id; b=SO3ed58UE244gmQbYT66bdnhBcpFRSRDe9Qq/aqVLGGCHGEljhSEHAgR6Cg4CsNgO 8/+0zwCelqGDhdLs+mnr2Ym/B2PwT/2Fuz78rIYocihZja1MWMjyKPOi/IRpyOO1H4 bLbs2o+a1s2O3FppA3F8Y0s31Tw6LanUqsubCAQE= From: Sven Eckelmann To: b.a.t.m.a.n@lists.open-mesh.org Date: Fri, 25 May 2012 08:55:55 +0200 Message-Id: <1337928955-20454-1-git-send-email-sven@narfation.org> X-Mailer: git-send-email 1.7.10 Subject: [B.A.T.M.A.N.] [PATCH] batman-adv: Use batctl indentation of bat_packettype 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: Fri, 25 May 2012 06:56:05 -0000 The style of the indentation was changed in 206af118414355e867e725ea83bc3a2989db5a40 Signed-off-by: Sven Eckelmann --- packet.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packet.h b/packet.h index 205879e..c90219c 100644 --- a/packet.h +++ b/packet.h @@ -23,14 +23,14 @@ #define ETH_P_BATMAN 0x4305 /* unofficial/not registered Ethertype */ enum bat_packettype { - BAT_IV_OGM = 0x01, - BAT_ICMP = 0x02, - BAT_UNICAST = 0x03, - BAT_BCAST = 0x04, - BAT_VIS = 0x05, + BAT_IV_OGM = 0x01, + BAT_ICMP = 0x02, + BAT_UNICAST = 0x03, + BAT_BCAST = 0x04, + BAT_VIS = 0x05, BAT_UNICAST_FRAG = 0x06, - BAT_TT_QUERY = 0x07, - BAT_ROAM_ADV = 0x08 + BAT_TT_QUERY = 0x07, + BAT_ROAM_ADV = 0x08 }; /* this file is included by batctl which needs these defines */