From bd7d023f39b048140221a0fb293eadedc8fa071e Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Sun, 19 Sep 2004 00:21:28 +0000 Subject: Close file descriptors on exec --- common/smtppass.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common/smtppass.c') diff --git a/common/smtppass.c b/common/smtppass.c index 2604a85..25522de 100644 --- a/common/smtppass.c +++ b/common/smtppass.c @@ -275,6 +275,7 @@ int sp_run(const char* configfile, const char* pidfile, int dbg_level) exit(1); } + fcntl(sock, F_SETFD, fcntl(sock, F_GETFD, 0) | FD_CLOEXEC); setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&true, sizeof(true)); /* Unlink the socket file if it exists */ @@ -1173,6 +1174,7 @@ int sp_write_data(spctx_t* ctx, const char* buf, int len) return -1; } + fcntl(tfd, F_SETFD, fcntl(tfd, F_GETFD, 0) | FD_CLOEXEC); sp_messagex(ctx, LOG_DEBUG, "created cache file: %s", ctx->cachename); } -- cgit v1.2.3