Commit d88d7de0 authored by David S. Miller's avatar David S. Miller

netfilter: nf_conntrack_standalone: Fix set-but-unused variables.

The variable 'ret' is set but unused in ct_seq_show().

This was obviously meant to be used to propagate error codes
to the caller, so make it so.
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d87d7fb3
...@@ -245,7 +245,7 @@ static int ct_seq_show(struct seq_file *s, void *v) ...@@ -245,7 +245,7 @@ static int ct_seq_show(struct seq_file *s, void *v)
ret = 0; ret = 0;
release: release:
nf_ct_put(ct); nf_ct_put(ct);
return 0; return ret;
} }
static const struct seq_operations ct_seq_ops = { static const struct seq_operations ct_seq_ops = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment