[or-cvs] [tor/master 6/9] Fix compile error on MacOS X (and other platforms without O_CLOEXEC)
nickm at torproject.org
nickm at torproject.org
Wed Dec 1 16:39:16 UTC 2010
Author: Steven Murdoch <Steven.Murdoch at cl.cam.ac.uk>
Date: Sat, 20 Nov 2010 13:50:55 +0000
Subject: Fix compile error on MacOS X (and other platforms without O_CLOEXEC)
Commit: 38da44cbf4b5cfe0802c1647c0efc6f2aeb0e821
---
src/common/compat.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/common/compat.c b/src/common/compat.c
index 42602fb..07d9618 100644
--- a/src/common/compat.c
+++ b/src/common/compat.c
@@ -112,7 +112,7 @@ tor_open_cloexec(const char *path, int flags, unsigned mode)
int fd = open(path, flags, mode);
#ifdef FD_CLOEXEC
if (fd >= 0)
- fcntl(s, F_SETFD, FD_CLOEXEC);
+ fcntl(fd, F_SETFD, FD_CLOEXEC);
#endif
return fd;
#endif
--
1.7.1
More information about the tor-commits
mailing list