summaryrefslogtreecommitdiffstats
path: root/server.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2011-02-15 15:12:28 +0000
committerTiago Cunha <tcunha@gmx.com>2011-02-15 15:12:28 +0000
commit3b56ebce6dd4077f6527843cfc1da63614605875 (patch)
tree1d5b128f729a45a7c1701d174bba81c37d733102 /server.c
parent2ab568fa88cb40e0d63696d60b9e871a9909074d (diff)
Sync OpenBSD patchset 854:
Use LIST_* not SLIST_*.
Diffstat (limited to 'server.c')
-rw-r--r--server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server.c b/server.c
index 8514fbb7..eb68bd05 100644
--- a/server.c
+++ b/server.c
@@ -1,4 +1,4 @@
-/* $Id: server.c,v 1.252 2011-01-21 23:44:13 tcunha Exp $ */
+/* $Id: server.c,v 1.253 2011-02-15 15:12:28 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -416,7 +416,7 @@ server_child_exited(pid_t pid, int status)
}
}
- SLIST_FOREACH(job, &all_jobs, lentry) {
+ LIST_FOREACH(job, &all_jobs, lentry) {
if (pid == job->pid) {
job_died(job, status); /* might free job */
break;