aboutsummaryrefslogtreecommitdiffstats
path: root/src/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/client.c')
-rw-r--r--src/client.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/client.c b/src/client.c
index 7f47aacd4..f09427622 100644
--- a/src/client.c
+++ b/src/client.c
@@ -129,21 +129,17 @@ static void set_send_buf_size(struct client *client)
}
}
-static inline int client_is_expired(const struct client *client)
+int client_is_expired(const struct client *client)
{
return client->fd < 0;
}
-static int global_expired;
-
static inline void client_set_expired(struct client *client)
{
if (client->fd >= 0) {
xclose(client->fd);
client->fd = -1;
}
-
- global_expired = 1;
}
static void client_init(struct client *client, int fd)
@@ -341,11 +337,8 @@ static int client_process_line(struct client *client)
if (strcmp(line, CLIENT_LIST_MODE_END) == 0) {
DEBUG("client %i: process command "
"list\n", client->num);
-
- global_expired = 0;
ret = processListOfCommands(client,
&(client->permission),
- &global_expired,
client->cmd_list_OK,
client->cmd_list);
DEBUG("client %i: process command "