summaryrefslogtreecommitdiff
path: root/netcat.c
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2013-11-15 22:28:48 +0000
committerXin LI <delphij@FreeBSD.org>2013-11-15 22:28:48 +0000
commita113ffae60e323fae1068c0f4d3b033d5c4db116 (patch)
tree1c87ef466f13db1bfb571c516d1f81aeb53eac50 /netcat.c
parent791bbda65d1e5e5968dd1c698ecbce06cb971d9a (diff)
Diffstat (limited to 'netcat.c')
-rw-r--r--netcat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/netcat.c b/netcat.c
index 33246d7a747a..571de9a76663 100644
--- a/netcat.c
+++ b/netcat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: netcat.c,v 1.111 2013/03/20 09:27:56 sthen Exp $ */
+/* $OpenBSD: netcat.c,v 1.112 2013/04/29 00:28:23 okan Exp $ */
/*
* Copyright (c) 2001 Eric Jackson <ericj@monkey.org>
*
@@ -523,7 +523,7 @@ unix_connect(char *path)
if ((s = socket(AF_UNIX, SOCK_STREAM, 0)) < 0)
return (-1);
}
- (void)fcntl(s, F_SETFD, 1);
+ (void)fcntl(s, F_SETFD, FD_CLOEXEC);
memset(&sun, 0, sizeof(struct sockaddr_un));
sun.sun_family = AF_UNIX;