|
@@ -250,7 +250,7 @@ static int ct_seq_show(struct seq_file *s, void *v)
|
|
|
goto release;
|
|
|
|
|
|
if (!(test_bit(IPS_SEEN_REPLY_BIT, &ct->status)))
|
|
|
- seq_printf(s, "[UNREPLIED] ");
|
|
|
+ seq_puts(s, "[UNREPLIED] ");
|
|
|
|
|
|
print_tuple(s, &ct->tuplehash[IP_CT_DIR_REPLY].tuple,
|
|
|
l3proto, l4proto);
|
|
@@ -261,7 +261,7 @@ static int ct_seq_show(struct seq_file *s, void *v)
|
|
|
goto release;
|
|
|
|
|
|
if (test_bit(IPS_ASSURED_BIT, &ct->status))
|
|
|
- seq_printf(s, "[ASSURED] ");
|
|
|
+ seq_puts(s, "[ASSURED] ");
|
|
|
|
|
|
if (seq_has_overflowed(s))
|
|
|
goto release;
|
|
@@ -350,7 +350,7 @@ static int ct_cpu_seq_show(struct seq_file *seq, void *v)
|
|
|
const struct ip_conntrack_stat *st = v;
|
|
|
|
|
|
if (v == SEQ_START_TOKEN) {
|
|
|
- seq_printf(seq, "entries searched found new invalid ignore delete delete_list insert insert_failed drop early_drop icmp_error expect_new expect_create expect_delete search_restart\n");
|
|
|
+ seq_puts(seq, "entries searched found new invalid ignore delete delete_list insert insert_failed drop early_drop icmp_error expect_new expect_create expect_delete search_restart\n");
|
|
|
return 0;
|
|
|
}
|
|
|
|