Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1336537
| From | Anton Protopopov <a.s.protopopov@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] appletalk: fix erroneous return value |
| Date | 2016-02-17 17:00 +0100 |
| Message-ID | <r3cGf-8sZ-5@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
The atalk_sendmsg() function might return wrong value ENETUNREACH instead of -ENETUNREACH. Signed-off-by: Anton Protopopov <a.s.protopopov@gmail.com> --- net/appletalk/ddp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/appletalk/ddp.c b/net/appletalk/ddp.c index d5871ac..f066781 100644 --- a/net/appletalk/ddp.c +++ b/net/appletalk/ddp.c @@ -1625,7 +1625,7 @@ static int atalk_sendmsg(struct socket *sock, struct msghdr *msg, size_t len) rt = atrtr_find(&at_hint); } - err = ENETUNREACH; + err = -ENETUNREACH; if (!rt) goto out; -- 2.6.5
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] appletalk: fix erroneous return value Anton Protopopov <a.s.protopopov@gmail.com> - 2016-02-17 17:00 +0100 Re: [PATCH] appletalk: fix erroneous return value David Miller <davem@davemloft.net> - 2016-02-18 21:10 +0100
csiph-web