summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--server-fn.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/server-fn.c b/server-fn.c
index 6acca2bf..4e3e12ec 100644
--- a/server-fn.c
+++ b/server-fn.c
@@ -164,8 +164,6 @@ server_lock(void)
c = ARRAY_ITEM(&clients, i);
if (c == NULL || c->session == NULL)
continue;
- if (c->flags & CLIENT_SUSPENDED)
- continue;
server_lock_client(c);
}
}
@@ -180,8 +178,6 @@ server_lock_session(struct session *s)
c = ARRAY_ITEM(&clients, i);
if (c == NULL || c->session == NULL || c->session != s)
continue;
- if (c->flags & CLIENT_SUSPENDED)
- continue;
server_lock_client(c);
}
}
@@ -193,6 +189,9 @@ server_lock_client(struct client *c)
size_t cmdlen;
struct msg_lock_data lockdata;
+ if (c->flags & CLIENT_SUSPENDED)
+ return;
+
cmd = options_get_string(&c->session->options, "lock-command");
cmdlen = strlcpy(lockdata.cmd, cmd, sizeof lockdata.cmd);
if (cmdlen >= sizeof lockdata.cmd)