diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/batman-adv/translation-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/batman-adv/translation-table.c b/net/batman-adv/translation-table.c index fb15b4c076f7..d44672f4a349 100644 --- a/net/batman-adv/translation-table.c +++ b/net/batman-adv/translation-table.c | |||
@@ -517,8 +517,8 @@ int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset) | |||
517 | BATADV_TT_CLIENT_PENDING ? 'X' : '.'), | 517 | BATADV_TT_CLIENT_PENDING ? 'X' : '.'), |
518 | (tt_common_entry->flags & | 518 | (tt_common_entry->flags & |
519 | BATADV_TT_CLIENT_WIFI ? 'W' : '.'), | 519 | BATADV_TT_CLIENT_WIFI ? 'W' : '.'), |
520 | no_purge ? last_seen_secs : 0, | 520 | no_purge ? 0 : last_seen_secs, |
521 | no_purge ? last_seen_msecs : 0); | 521 | no_purge ? 0 : last_seen_msecs); |
522 | } | 522 | } |
523 | rcu_read_unlock(); | 523 | rcu_read_unlock(); |
524 | } | 524 | } |