diff options
author | Michael Adam <obnox@samba.org> | 2009-11-10 17:39:20 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-11-10 17:59:40 +0100 |
commit | feea6db8157b11ec71fc1a992ae1a8913d1cd9b4 (patch) | |
tree | 210936e50a82d743963b8affac2fb71fcb9a2024 | |
parent | c3f29ce4ac13e436eab25038cd55db2deddd061f (diff) | |
download | tinyproxy-feea6db8157b11ec71fc1a992ae1a8913d1cd9b4.tar.gz tinyproxy-feea6db8157b11ec71fc1a992ae1a8913d1cd9b4.zip |
daemon.c: fix #if NDEBUG --> #ifdef NDEBUG
Thanks to Mathew Mrosko for pointing that out.
-rw-r--r-- | src/daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon.c b/src/daemon.c index e865ecf..41b821a 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -48,7 +48,7 @@ void makedaemon (void) umask (0177); -#if NDEBUG +#ifdef NDEBUG /* * When not in debugging mode, close the standard file * descriptors. |