Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 79030ed0 authored by Patrick McHardy's avatar Patrick McHardy Committed by David S. Miller
Browse files

[NETFILTER]: ip_tables: revision support for compat code

parent bec71b16
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1994,6 +1994,8 @@ compat_get_entries(struct compat_ipt_get_entries __user *uptr, int *len)
	return ret;
}

static int do_ipt_get_ctl(struct sock *, int, void __user *, int *);

static int
compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
{
@@ -2007,8 +2009,7 @@ compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
		ret = compat_get_entries(user, len);
		break;
	default:
		duprintf("compat_do_ipt_get_ctl: unknown request %i\n", cmd);
		ret = -EINVAL;
		ret = do_ipt_get_ctl(sk, cmd, user, len);
	}
	return ret;
}