mirror of
https://github.com/sheumann/hush.git
synced 2024-12-21 23:29:34 +00:00
Set the close-on-exec flag, just to be saf
This commit is contained in:
parent
e4d2a43951
commit
6a9799020b
@ -232,6 +232,8 @@ static void message(int device, char *fmt, ...)
|
|||||||
log_fd = -2;
|
log_fd = -2;
|
||||||
fprintf(stderr, "Bummer, can't write to log on %s!\n", log);
|
fprintf(stderr, "Bummer, can't write to log on %s!\n", log);
|
||||||
device = CONSOLE;
|
device = CONSOLE;
|
||||||
|
} else {
|
||||||
|
fcntl(log_fd, F_SETFD, FD_CLOEXEC);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ((device & LOG) && (log_fd >= 0)) {
|
if ((device & LOG) && (log_fd >= 0)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user