From: Daniel Borkmann Date: Tue, 25 Jun 2013 16:17:30 +0000 (+0200) Subject: net: sctp: simplify sctp_get_port X-Git-Tag: v3.11-rc1~64^2~131 X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=62208f12451f723cd9e9f1d6d22866a61545e488;p=~andy%2Flinux net: sctp: simplify sctp_get_port No need to have an extra ret variable when we directly can return the value of sctp_get_port_local(). Signed-off-by: Daniel Borkmann Acked-by: Vlad Yasevich Signed-off-by: David S. Miller --- diff --git a/net/sctp/socket.c b/net/sctp/socket.c index ba9359c20c8..66fcdcfe1b7 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c @@ -6036,7 +6036,6 @@ fail: */ static int sctp_get_port(struct sock *sk, unsigned short snum) { - long ret; union sctp_addr addr; struct sctp_af *af = sctp_sk(sk)->pf->af; @@ -6045,9 +6044,7 @@ static int sctp_get_port(struct sock *sk, unsigned short snum) addr.v4.sin_port = htons(snum); /* Note: sk->sk_num gets filled in if ephemeral port request. */ - ret = sctp_get_port_local(sk, &addr); - - return ret ? 1 : 0; + return !!sctp_get_port_local(sk, &addr); } /*