diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-07-16 11:19:51 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-07-16 11:19:51 +0000 |
commit | 16013c560e189bd0c4fb58e038c0f449542dba7a (patch) | |
tree | b9d2777f2e5a8108b684839f04310ffd0de82179 /src/libunixonacid/unixmessage_drop.c | |
parent | 538fd727337959b1d7b8449a578a31fd9a9c62b4 (diff) | |
download | skalibs-16013c560e189bd0c4fb58e038c0f449542dba7a.tar.xz |
Add egidingroups sysdeps, change fd_close() to void and saving errno, propagate changes
Diffstat (limited to 'src/libunixonacid/unixmessage_drop.c')
-rw-r--r-- | src/libunixonacid/unixmessage_drop.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libunixonacid/unixmessage_drop.c b/src/libunixonacid/unixmessage_drop.c index e51a8d0..bf37df3 100644 --- a/src/libunixonacid/unixmessage_drop.c +++ b/src/libunixonacid/unixmessage_drop.c @@ -1,13 +1,10 @@ /* ISC license. */ -#include <errno.h> #include <skalibs/djbunix.h> #include <skalibs/unixmessage.h> void unixmessage_drop (unixmessage_t const *m) { - int e = errno ; unsigned int i = m->nfds ; while (i--) fd_close(m->fds[i]) ; - errno = e ; } |