From 026507061631f3829b5d53886a4a0ed6df861c4c Mon Sep 17 00:00:00 2001 From: Sepherosa Ziehau Date: Sun, 1 Feb 2009 11:16:21 +0800 Subject: [PATCH] rtsock: Break long line --- sys/net/rtsock.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/net/rtsock.c b/sys/net/rtsock.c index 0c9f1b9258..1cde41f62f 100644 --- a/sys/net/rtsock.c +++ b/sys/net/rtsock.c @@ -531,7 +531,8 @@ route_output(struct mbuf *m, struct socket *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 && priv_check_cred(so->so_cred, PRIV_ROOT, 0) != 0) + if (rtm->rtm_type != RTM_GET && + priv_check_cred(so->so_cred, PRIV_ROOT, 0) != 0) gotoerr(EPERM); switch (rtm->rtm_type) { -- 2.11.4.GIT