summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2007-06-26 23:56:10 +0000
committerStef Walter <stef@memberwebs.com>2007-06-26 23:56:10 +0000
commit92829f531e52776eb91800597eda2907e8d66bf0 (patch)
tree042cd42872d62b29a8487742a83de789e0b2fa5f
parente0bd0e11610112d5b3ddbc8b62411fc13e3e3348 (diff)
Fix dumb array missing null terminator.
-rw-r--r--srcx/jstart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/srcx/jstart.c b/srcx/jstart.c
index 4953a81..aa119f8 100644
--- a/srcx/jstart.c
+++ b/srcx/jstart.c
@@ -61,7 +61,7 @@
#endif
#define START_SCRIPT "/etc/rc"
-static char* START_ARGS[] = { _PATH_BSHELL, START_SCRIPT };
+static char* START_ARGS[] = { _PATH_BSHELL, START_SCRIPT, NULL };
static void usage();