From ed4485f9293810a599c313635e9eadc78742aa9a Mon Sep 17 00:00:00 2001 From: Dennis Schafroth Date: Fri, 3 Sep 2010 13:34:48 +0200 Subject: [PATCH] Fix renamed session function --- src/http_command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http_command.c b/src/http_command.c index 198e816..567037f 100644 --- a/src/http_command.c +++ b/src/http_command.c @@ -936,7 +936,7 @@ static void cmd_show(struct http_channel *c) if (block) { - if (!strcmp(block, "preferred") && !session_preferred_clients_ready(s->psession)) { + if (!strcmp(block, "preferred") && !session_is_preferred_clients_ready(s->psession)) { // if there is already a watch/block. we do not block this one if (session_set_watch(s->psession, SESSION_WATCH_SHOW_PREF, show_records_ready, c, c) != 0) -- 1.7.10.4