diff options
author | Maciej Zenczykowski <maze@google.com> | 2011-04-04 15:30:32 +0200 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2011-04-04 15:30:32 +0200 |
commit | a239728ec064666025de2723997d87b176d57fd6 (patch) | |
tree | 20daf27af7f9d9fd12a6c0d1bf5f546afad5c21d /ip6tables-restore.c | |
parent | 8d6492d582c7284217c042d5638cf50174e5fbfd (diff) |
mark newly opened fds as FD_CLOEXEC (close on exec)
(This is iptables-1.4.3.1-cloexec.patch from RedHat iptables.src.rpm)
Signed-off-by: Maciej Zenczykowski <maze@google.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'ip6tables-restore.c')
-rw-r--r-- | ip6tables-restore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ip6tables-restore.c b/ip6tables-restore.c index e9a130fa..10c3acfc 100644 --- a/ip6tables-restore.c +++ b/ip6tables-restore.c @@ -168,7 +168,7 @@ int main(int argc, char *argv[]) } if (optind == argc - 1) { - in = fopen(argv[optind], "r"); + in = fopen(argv[optind], "re"); if (!in) { fprintf(stderr, "Can't open %s: %s\n", argv[optind], strerror(errno)); |