aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/sledjchisl/sledjchisl.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/sledjchisl/sledjchisl.c b/src/sledjchisl/sledjchisl.c
index a16efbf..02b5d0c 100644
--- a/src/sledjchisl/sledjchisl.c
+++ b/src/sledjchisl/sledjchisl.c
@@ -8227,14 +8227,11 @@ fcgiDone:
8227 { 8227 {
8228 // Start up the web stuff. TODO - remove this once we handle the fcgi stuff ourselves. 8228 // Start up the web stuff. TODO - remove this once we handle the fcgi stuff ourselves.
8229 I("Starting the web stuff."); 8229 I("Starting the web stuff.");
8230 char *d = xmprintf("%s.{bottom}", Ttab); 8230 char *c = xmprintf("spawn-fcgi -n -u %s -s %s/sledjchisl.socket -M 0660 -G www-data -- "
8231 char *c = xmprintf(
8232 "spawn-fcgi -n -u %s -s %s/sledjchisl.socket -M 0660 -G www-data -- "
8233 "/usr/bin/valgrind --leak-check=full sledjchisl", 8231 "/usr/bin/valgrind --leak-check=full sledjchisl",
8234 scUser, scCache, scRoot); 8232 scUser, scCache, scRoot);
8235 sendTmuxCmd(d, c); 8233 sendTmuxCmd(Ttab, c);
8236 free(c); 8234 free(c);
8237 free(d);
8238 } 8235 }
8239 else 8236 else
8240 I("NOT Starting the web stuff."); 8237 I("NOT Starting the web stuff.");