From c74ece334dccf57da28588429ae545c6edfef75b Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Mon, 23 May 2011 18:13:33 +0200 Subject: [PATCH] pluto: Made helper functions in event_queue static. --- src/pluto/event_queue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pluto/event_queue.c b/src/pluto/event_queue.c index 55d064f26..602a013ee 100644 --- a/src/pluto/event_queue.c +++ b/src/pluto/event_queue.c @@ -147,13 +147,13 @@ METHOD(event_queue_t, destroy, void, free(this); } -bool set_nonblock(int socket) +static bool set_nonblock(int socket) { int flags = fcntl(socket, F_GETFL); return flags != -1 && fcntl(socket, F_SETFL, flags | O_NONBLOCK) != -1; } -bool set_cloexec(int socket) +static bool set_cloexec(int socket) { int flags = fcntl(socket, F_GETFD); return flags != -1 && fcntl(socket, F_SETFD, flags | FD_CLOEXEC) != -1;