diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-08-11 18:35:54 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-08-11 18:35:54 +0200 |
commit | 7e8185ef942de5acecfa4cda03d7d7711ddda992 (patch) | |
tree | df2d7989fb1769e9ea9d3981d7d1a55b4f59f876 /src/reply-password/reply-password.c | |
parent | d7bf74d9cccdc6ffa567ea0e08f814863610f88e (diff) |
fix a couple of more lazy "return -1"
Fix should strictly follow the rule to return negative errno-style
error codes from functions, hence let's fix more "return -1"-style
lazinesses.
Diffstat (limited to 'src/reply-password/reply-password.c')
-rw-r--r-- | src/reply-password/reply-password.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reply-password/reply-password.c b/src/reply-password/reply-password.c index c730216b73..73c2d1bbdf 100644 --- a/src/reply-password/reply-password.c +++ b/src/reply-password/reply-password.c @@ -53,7 +53,7 @@ static int send_on_socket(int fd, const char *socket_name, const void *packet, s if (sendto(fd, packet, size, MSG_NOSIGNAL, &sa.sa, offsetof(struct sockaddr_un, sun_path) + strlen(socket_name)) < 0) { log_error("Failed to send: %m"); - return -1; + return -errno; } return 0; |