Software /
code /
prosody
Changeset
588:e743cb742ca6
Remove some debugging from pposix.c
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 06 Dec 2008 23:22:35 +0000 |
parents | 587:43f509a1519a |
children | 592:c6e2c727d0cc |
files | util-src/pposix.c |
diffstat | 1 files changed, 0 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/util-src/pposix.c Sat Dec 06 23:21:55 2008 +0000 +++ b/util-src/pposix.c Sat Dec 06 23:22:35 2008 +0000 @@ -53,13 +53,11 @@ 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) {