diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2022-11-17 16:59:07 +1100 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-11-25 01:36:01 +0100 |
commit | 8033a8e889ef5893aeab156fd9a60cd4d5722e48 (patch) | |
tree | 718476f36f688f2677fc7ed9931eb50e4673c678 | |
parent | 9b0cc33d6841bec78e1896d4cd1761a57bd250a7 (diff) | |
download | passt-8033a8e889ef5893aeab156fd9a60cd4d5722e48.tar passt-8033a8e889ef5893aeab156fd9a60cd4d5722e48.tar.gz passt-8033a8e889ef5893aeab156fd9a60cd4d5722e48.tar.bz2 passt-8033a8e889ef5893aeab156fd9a60cd4d5722e48.tar.lz passt-8033a8e889ef5893aeab156fd9a60cd4d5722e48.tar.xz passt-8033a8e889ef5893aeab156fd9a60cd4d5722e48.tar.zst passt-8033a8e889ef5893aeab156fd9a60cd4d5722e48.zip |
util: Always return -1 on error in sock_l4()
According to its doc comments, sock_l4() returns -1 on error. It does,
except in one case where it returns -EIO. Fix this inconsistency to match
the docs and always return -1.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -141,7 +141,7 @@ int sock_l4(const struct ctx *c, int af, uint8_t proto, if (fd > SOCKET_MAX) { close(fd); - return -EIO; + return -1; } ref.r.s = fd; |