public inbox for b.a.t.m.a.n@lists.open-mesh.org
 help / color / mirror / Atom feed
* [B.A.T.M.A.N.] [PATCH 1/2 next] batman-adv: fix orig capabilities numbering
@ 2013-09-22 18:18 Antonio Quartulli
  2013-09-22 18:18 ` [B.A.T.M.A.N.] [PATCH 2/2 next] batman-adv: fix orig capabilities numbering (NetCod) Antonio Quartulli
  2013-09-24 12:28 ` [B.A.T.M.A.N.] [PATCH 1/2 next] batman-adv: fix orig capabilities numbering Marek Lindner
  0 siblings, 2 replies; 4+ messages in thread
From: Antonio Quartulli @ 2013-09-22 18:18 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

Let's start the capabilities from bit 0.

Introduced by 2b1c07b918d2acc41555bbde9d538179acb308b4
("batman-adv: tvlv - add distributed arp table container")

Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
---
 types.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/types.h b/types.h
index f323822..8465a55 100644
--- a/types.h
+++ b/types.h
@@ -246,7 +246,7 @@ struct batadv_orig_node {
  * @BATADV_ORIG_CAPA_HAS_NC: orig node has network coding enabled
  */
 enum batadv_orig_capabilities {
-	BATADV_ORIG_CAPA_HAS_DAT = BIT(1),
+	BATADV_ORIG_CAPA_HAS_DAT = BIT(0),
 	BATADV_ORIG_CAPA_HAS_NC = BIT(2),
 };
 
-- 
1.8.1.5


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-09-24 12:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-22 18:18 [B.A.T.M.A.N.] [PATCH 1/2 next] batman-adv: fix orig capabilities numbering Antonio Quartulli
2013-09-22 18:18 ` [B.A.T.M.A.N.] [PATCH 2/2 next] batman-adv: fix orig capabilities numbering (NetCod) Antonio Quartulli
2013-09-24 12:29   ` Marek Lindner
2013-09-24 12:28 ` [B.A.T.M.A.N.] [PATCH 1/2 next] batman-adv: fix orig capabilities numbering Marek Lindner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox