diff options
Diffstat (limited to 'src/rc/runscript.c')
-rw-r--r-- | src/rc/runscript.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/rc/runscript.c b/src/rc/runscript.c index d4500044..61746155 100644 --- a/src/rc/runscript.c +++ b/src/rc/runscript.c @@ -1255,12 +1255,13 @@ int runscript(int argc, char **argv) runlevel, depoptions); rc_stringlist_free(tmplist); tmplist = NULL; - TAILQ_FOREACH(svc, services, entries) - printf("%s ", svc->value); - if (TAILQ_FIRST(services)) + if (services) { + TAILQ_FOREACH(svc, services, entries) + printf("%s ", svc->value); printf ("\n"); - rc_stringlist_free(services); - services = NULL; + rc_stringlist_free(services); + services = NULL; + } } else if (strcmp (optarg, "status") == 0) { RC_SERVICE r = svc_status(); retval = (int) r; |