Repository : ssh://git@open-mesh.org/batman-adv
On branch : next
commit 52760489b819aa4799058835ae2e02bf1b104937 Author: Sven Eckelmann sven@narfation.org Date: Thu Oct 18 10:48:31 2012 +0200
batman-adv: Fix regression in bla multiline comment style
4c1721b39c8a77c99e8f4de97b5d5d112006406c ("batman-adv: Fix potential broadcast BLA-duplicate-check race condition") introduced a comment with the wrong line ending.
Signed-off-by: Sven Eckelmann sven@narfation.org Signed-off-by: Marek Lindner lindner_marek@yahoo.de
52760489b819aa4799058835ae2e02bf1b104937 bridge_loop_avoidance.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/bridge_loop_avoidance.c b/bridge_loop_avoidance.c index 9a4b24f..1f5ee77 100644 --- a/bridge_loop_avoidance.c +++ b/bridge_loop_avoidance.c @@ -1265,7 +1265,8 @@ int batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv, goto out; } /* not found, add a new entry (overwrite the oldest entry) - * and allow it, its the first occurence. */ + * and allow it, its the first occurence. + */ curr = (bat_priv->bla.bcast_duplist_curr + BATADV_DUPLIST_SIZE - 1); curr %= BATADV_DUPLIST_SIZE; entry = &bat_priv->bla.bcast_duplist[curr];