diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-12-06 23:22:35 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-12-06 23:22:35 +0000 |
commit | f53f4724103bb6c3bf49effbef16f68fe9669d9b (patch) | |
tree | db059d4a1b7753497be4c80c99fea03ff3878478 /util-src | |
parent | c67ce2d2e1ba4f6c0813df7f28abeea20ac76b69 (diff) | |
download | prosody-f53f4724103bb6c3bf49effbef16f68fe9669d9b.tar.gz prosody-f53f4724103bb6c3bf49effbef16f68fe9669d9b.zip |
Remove some debugging from pposix.c
Diffstat (limited to 'util-src')
-rw-r--r-- | util-src/pposix.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/util-src/pposix.c b/util-src/pposix.c index c98414cc..5e15ed76 100644 --- a/util-src/pposix.c +++ b/util-src/pposix.c @@ -53,13 +53,11 @@ static int daemonize(lua_State *L) else if(pid != 0) { /* We are the parent process */ - printf("We are the parent, pid of child is %d\n", (int)pid); lua_pushboolean(L, 1); lua_pushnumber(L, pid); return 2; } - printf("We are the child, pid reports %d\n", (int)pid); /* and we are the child process */ if(setsid() == -1) { |