diff options
author | Omar Polo <op@omarpolo.com> | 2023-07-24 14:07:28 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2023-07-24 14:07:28 +0000 |
commit | e075021085c1b1f8d28c35d2f358f7792980b0d1 (patch) | |
tree | 9753bd8c0e9e4f6feb963e68ca69a0ab28856ee8 /logger.c | |
parent | e5f060f0d209b0d77bfcf0e087dca70702c8c14a (diff) |
still respect `log' when in debug mode
Diffstat (limited to 'logger.c')
-rw-r--r-- | logger.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0])) #endif -static int logfd = 2; /* stderr */ +static int logfd = -1; static void logger_init(struct privsep *, struct privsep_proc *, void *); static void logger_shutdown(void); |