summaryrefslogtreecommitdiff
path: root/src/rc/runscript.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-03-16 17:27:13 +0000
committerRoy Marples <roy@marples.name>2008-03-16 17:27:13 +0000
commit40930d7d0a613aaf6fa124a5963afcae0c30ce7a (patch)
tree89b379b4fe5a20a061c05881b75ad93276d80d08 /src/rc/runscript.c
parent1fd1472ddeb4a9e248bd20a378091ffe6f1132b6 (diff)
downloadopenrc-40930d7d0a613aaf6fa124a5963afcae0c30ce7a.tar.gz
openrc-40930d7d0a613aaf6fa124a5963afcae0c30ce7a.tar.bz2
openrc-40930d7d0a613aaf6fa124a5963afcae0c30ce7a.tar.xz
Use correct TAILQ_CONCAT macro when not defined.
Diffstat (limited to 'src/rc/runscript.c')
-rw-r--r--src/rc/runscript.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/runscript.c b/src/rc/runscript.c
index cfc2611..e7a094f 100644
--- a/src/rc/runscript.c
+++ b/src/rc/runscript.c
@@ -627,7 +627,7 @@ static void get_started_services(void)
RC_STRINGLIST *tmp = rc_services_in_state(RC_SERVICE_INACTIVE);
rc_stringlist_free(restart_services);
restart_services = rc_services_in_state(RC_SERVICE_STARTED);
- TAILQ_CONCAT(restart_services, tmp);
+ TAILQ_CONCAT(restart_services, tmp, entries);
free(tmp);
}