summaryrefslogtreecommitdiff
path: root/authfd.c
diff options
context:
space:
mode:
Diffstat (limited to 'authfd.c')
-rw-r--r--authfd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/authfd.c b/authfd.c
index c11c3f5a8..c942a9110 100644
--- a/authfd.c
+++ b/authfd.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: authfd.c,v 1.84 2010/08/31 11:54:45 djm Exp $ */ 1/* $OpenBSD: authfd.c,v 1.85 2011/05/15 08:09:01 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -110,7 +110,7 @@ ssh_get_authentication_socket(void)
110 return -1; 110 return -1;
111 111
112 /* close on exec */ 112 /* close on exec */
113 if (fcntl(sock, F_SETFD, 1) == -1) { 113 if (fcntl(sock, F_SETFD, FD_CLOEXEC) == -1) {
114 close(sock); 114 close(sock);
115 return -1; 115 return -1;
116 } 116 }