SocketUtil: add separators to g_prefix_error() call

This commit is contained in:
Max Kellermann 2013-02-04 14:26:00 +01:00
parent 7e92820c50
commit 00baddcd9e
1 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ socket_bind_listen(int domain, int type, int protocol,
fd = socket_cloexec_nonblock(domain, type, protocol);
if (fd < 0) {
SetSocketError(error_r);
g_prefix_error(error_r, "Failed to create socket");
g_prefix_error(error_r, "Failed to create socket: ");
return -1;
}
@ -57,7 +57,7 @@ socket_bind_listen(int domain, int type, int protocol,
(const char *) &reuse, sizeof(reuse));
if (ret < 0) {
SetSocketError(error_r);
g_prefix_error(error_r, "setsockopt() failed");
g_prefix_error(error_r, "setsockopt() failed: ");
close_socket(fd);
return -1;
}
@ -72,7 +72,7 @@ socket_bind_listen(int domain, int type, int protocol,
ret = listen(fd, backlog);
if (ret < 0) {
SetSocketError(error_r);
g_prefix_error(error_r, "listen() failed");
g_prefix_error(error_r, "listen() failed: ");
close_socket(fd);
return -1;
}