batman-adv: tt_global_del_orig() has to print the correct message

Message ID 1316428159-31010-1-git-send-email-ordex@autistici.org (mailing list archive)
State Accepted, archived
Commit 6ec6655451f681626a1e6cc257d3a809535e5a7c
Headers

Commit Message

Antonio Quartulli Sept. 19, 2011, 10:29 a.m. UTC
  When deleting the entries, tt_global_del_orig() has to print the message passed
as argument instead of a static one.

Signed-off-by: Antonio Quartulli <ordex@autistici.org>
---
 translation-table.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)
  

Comments

Marek Lindner Sept. 21, 2011, 1:48 p.m. UTC | #1
On Monday, September 19, 2011 12:29:19 Antonio Quartulli wrote:
> When deleting the entries, tt_global_del_orig() has to print the message
> passed as argument instead of a static one.

Applied in revision 6ec6655.

Thanks,
Marek
  

Patch

diff --git a/translation-table.c b/translation-table.c
index cc53f78..7de9960 100644
--- a/translation-table.c
+++ b/translation-table.c
@@ -720,9 +720,10 @@  void tt_global_del_orig(struct bat_priv *bat_priv,
 			if (tt_global_entry->orig_node == orig_node) {
 				bat_dbg(DBG_TT, bat_priv,
 					"Deleting global tt entry %pM "
-					"(via %pM): originator time out\n",
+					"(via %pM): %s\n",
 					tt_global_entry->addr,
-					tt_global_entry->orig_node->orig);
+					tt_global_entry->orig_node->orig,
+					message);
 				hlist_del_rcu(node);
 				tt_global_entry_free_ref(tt_global_entry);
 			}