From bc324040603a650bcf75762dded7287ef710cf9b Mon Sep 17 00:00:00 2001 From: Matt Date: Sun, 5 Oct 2008 11:54:14 +0000 Subject: [PATCH] add begin_burst to "citadel version too low" failure --- webcit/webcit.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webcit/webcit.c b/webcit/webcit.c index 7a6fa4e3a..e2555614e 100644 --- a/webcit/webcit.c +++ b/webcit/webcit.c @@ -1637,6 +1637,7 @@ void session_loop(HashList *HTTPHeaders, StrBuf *ReqLine, StrBuf *request_method get_serv_info(browser_host, user_agent); if (serv_info.serv_rev_level < MINIMUM_CIT_VERSION) { + begin_burst(); wprintf(_("You are connected to a Citadel " "server running Citadel %d.%02d. \n" "In order to run this version of WebCit " @@ -1647,6 +1648,7 @@ void session_loop(HashList *HTTPHeaders, StrBuf *ReqLine, StrBuf *request_method MINIMUM_CIT_VERSION / 100, MINIMUM_CIT_VERSION % 100 ); + end_burst(); end_webcit_session(); goto SKIP_ALL_THIS_CRAP; } -- 2.39.2