aboutsummaryrefslogtreecommitdiffstats
path: root/src/daemon.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@member.fsf.org>2015-12-31 03:31:06 +0100
committerMattias Andrée <maandree@member.fsf.org>2015-12-31 03:31:06 +0100
commit5c6f9566ec7f8f0a0066cf423d63a7bdc0d7e599 (patch)
treebd3729623e8600d53cc366f41e61b0b21e73a1b2 /src/daemon.c
parentsome improvements and fixes (diff)
downloadsat-5c6f9566ec7f8f0a0066cf423d63a7bdc0d7e599.tar.gz
sat-5c6f9566ec7f8f0a0066cf423d63a7bdc0d7e599.tar.bz2
sat-5c6f9566ec7f8f0a0066cf423d63a7bdc0d7e599.tar.xz
fix bugs and improve debugging
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to '')
-rw-r--r--src/daemon.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/daemon.c b/src/daemon.c
index 830beca..977e845 100644
--- a/src/daemon.c
+++ b/src/daemon.c
@@ -218,8 +218,7 @@ reopen(int fd, int oflag)
return -1;
if (dup2(r, fd) == -1)
return saved_errno = errno, close(r), errno = saved_errno, -1;
- close(fd);
- return 0;
+ return close(r), 0;
}