Remove some debugging from pposix.c
authorMatthew Wild <mwild1@gmail.com>
Sat, 6 Dec 2008 23:22:35 +0000 (23:22 +0000)
committerMatthew Wild <mwild1@gmail.com>
Sat, 6 Dec 2008 23:22:35 +0000 (23:22 +0000)
util-src/pposix.c

index c98414cca2d6cdc5e78ed93b756f68b1088fd925..5e15ed7625a107789412e848540b01bfebe19198 100644 (file)
@@ -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)
        {