summaryrefslogtreecommitdiffstats
path: root/sys/net
diff options
context:
space:
mode:
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/rtsock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/rtsock.c b/sys/net/rtsock.c
index e7f3a2c..46adc0a 100644
--- a/sys/net/rtsock.c
+++ b/sys/net/rtsock.c
@@ -331,8 +331,8 @@ route_output(m, so)
* Verify that the caller has the appropriate privilege; RTM_GET
* is the only operation the non-superuser is allowed.
*/
- if (rtm->rtm_type != RTM_GET && suser_xxx(so->so_cred, NULL, 0) != 0)
- senderr(EPERM);
+ if (rtm->rtm_type != RTM_GET && (error = suser(curproc)) != 0)
+ senderr(error);
switch (rtm->rtm_type) {
OpenPOWER on IntegriCloud