diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2021-04-22 15:21:56 +0200 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2021-04-22 15:21:56 +0200 |
commit | 9ffb317cf9d64a5f883f654d1d5d9466b0937d4f (patch) | |
tree | 4e06f1ee4f6fa7af0493f9bfe4be3908538a19fa /passt.c | |
parent | 1f7cf04d343f185f9e044fdca70a1d0252492aed (diff) | |
download | passt-9ffb317cf9d64a5f883f654d1d5d9466b0937d4f.tar passt-9ffb317cf9d64a5f883f654d1d5d9466b0937d4f.tar.gz passt-9ffb317cf9d64a5f883f654d1d5d9466b0937d4f.tar.bz2 passt-9ffb317cf9d64a5f883f654d1d5d9466b0937d4f.tar.lz passt-9ffb317cf9d64a5f883f654d1d5d9466b0937d4f.tar.xz passt-9ffb317cf9d64a5f883f654d1d5d9466b0937d4f.tar.zst passt-9ffb317cf9d64a5f883f654d1d5d9466b0937d4f.zip |
passt: Don't unconditionally disable forking to background
...I left this there by mistake while debugging the debug
stuff.
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'passt.c')
-rw-r--r-- | passt.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -698,7 +698,7 @@ int main(int argc, char **argv) exit(EXIT_FAILURE); } -#if DEBUG || 1 +#if DEBUG openlog("passt", LOG_PERROR, LOG_DAEMON); #else openlog("passt", 0, LOG_DAEMON); |