Forgot to re-enable forking.

This commit is contained in:
Michael Jumper
2010-09-07 23:32:28 -07:00
parent 9dd15c2cfa
commit 8f4d722a9c

View File

@@ -94,7 +94,7 @@ int main(int argc, char* argv[]) {
}
/* Fork client */
client_pid = 0; /*fork();*/
client_pid = fork();
if (client_pid < 0) {
perror("Could not fork child");
return 4;