aboutsummaryrefslogtreecommitdiff
path: root/src/socket_wrapper.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/socket_wrapper.c')
-rw-r--r--src/socket_wrapper.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/socket_wrapper.c b/src/socket_wrapper.c
index 61f0f6e..12dfb74 100644
--- a/src/socket_wrapper.c
+++ b/src/socket_wrapper.c
@@ -1368,6 +1368,7 @@ static int socket_wrapper_first_free_index(void)
int next_free;
if (first_free == -1) {
+ errno = ENFILE;
return -1;
}
@@ -2897,7 +2898,6 @@ static int swrap_socket(int family, int type, int protocol)
idx = socket_wrapper_first_free_index();
if (idx == -1) {
- errno = ENOMEM;
return -1;
}
@@ -3113,7 +3113,6 @@ static int swrap_accept(int s,
idx = socket_wrapper_first_free_index();
if (idx == -1) {
- errno = ENOMEM;
return -1;
}