diff options
author | Damien Miller <djm@mindrot.org> | 2011-05-20 19:02:47 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2011-05-20 19:02:47 +1000 |
commit | 814ace08751a80c3b965c06fdfc1c9ac3d7698ca (patch) | |
tree | 5cc0a8c1ecc49fc882a950d9b647f7c1d060d7b6 /authfd.c | |
parent | ec2eaa3daf7f5543d8619cec30c1d73268323d01 (diff) | |
download | openssh-git-814ace08751a80c3b965c06fdfc1c9ac3d7698ca.tar.gz |
- OpenBSD CVS Sync
- djm@cvs.openbsd.org 2011/05/15 08:09:01
[authfd.c monitor.c serverloop.c]
use FD_CLOEXEC consistently; patch from zion AT x96.org
Diffstat (limited to 'authfd.c')
-rw-r--r-- | authfd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: authfd.c,v 1.84 2010/08/31 11:54:45 djm Exp $ */ +/* $OpenBSD: authfd.c,v 1.85 2011/05/15 08:09:01 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -110,7 +110,7 @@ ssh_get_authentication_socket(void) return -1; /* close on exec */ - if (fcntl(sock, F_SETFD, 1) == -1) { + if (fcntl(sock, F_SETFD, FD_CLOEXEC) == -1) { close(sock); return -1; } |