summaryrefslogtreecommitdiff
path: root/daemon.c
diff options
context:
space:
mode:
authorPaul Lindner <plindner@hi5.com>2007-04-12 20:02:46 +0000
committerPaul Lindner <plindner@hi5.com>2007-04-12 20:02:46 +0000
commitc8425072c56a9b609c358debc8201cfb54a61fed (patch)
treec1cf7b0236fc941110a575ae9d172ee84c1f539c /daemon.c
parentc0ec7b094099f86093087d981aafa9678d006c42 (diff)
downloadmemcached-c8425072c56a9b609c358debc8201cfb54a61fed.tar.gz
use EXIT_* constants
git-svn-id: http://code.sixapart.com/svn/memcached/trunk/server@500 b0b603af-a30f-0410-a34e-baf09ae79d0b
Diffstat (limited to 'daemon.c')
-rw-r--r--daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon.c b/daemon.c
index b80c53e..5ea6df7 100644
--- a/daemon.c
+++ b/daemon.c
@@ -50,7 +50,7 @@ daemon(nochdir, noclose)
case 0:
break;
default:
- _exit(0);
+ _exit(EXIT_SUCCESS);
}
if (setsid() == -1)