summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/server.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2011-01-26 00:11:47 +0000
committernicm <nicm@openbsd.org>2011-01-26 00:11:47 +0000
commit0a271d7eb99810851a0ca54d7eb52d3227e631e6 (patch)
tree1dd774880352ca7bf219c15758f9acb20fcb211c /usr.bin/tmux/server.c
parentWhen clearing the entire screen, clear lines that are used into the (diff)
downloadwireguard-openbsd-0a271d7eb99810851a0ca54d7eb52d3227e631e6.tar.xz
wireguard-openbsd-0a271d7eb99810851a0ca54d7eb52d3227e631e6.zip
Use LIST_* not SLIST_*.
Diffstat (limited to 'usr.bin/tmux/server.c')
-rw-r--r--usr.bin/tmux/server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/server.c b/usr.bin/tmux/server.c
index 0b211388b8a..9588bbb6105 100644
--- a/usr.bin/tmux/server.c
+++ b/usr.bin/tmux/server.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: server.c,v 1.100 2011/01/08 01:52:36 nicm Exp $ */
+/* $OpenBSD: server.c,v 1.101 2011/01/26 00:11:47 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -415,7 +415,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;