From: Amos Jeffries Date: Sun, 25 Nov 2012 05:02:42 +0000 (-0700) Subject: ext_time_quota_acl: BH error code is a 3.4 feature X-Git-Tag: SQUID_3_3_0_2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f982c53548d5c2b27f0084eea80a23db8d141dc9;p=thirdparty%2Fsquid.git ext_time_quota_acl: BH error code is a 3.4 feature --- diff --git a/helpers/external_acl/time_quota/ext_time_quota_acl.cc b/helpers/external_acl/time_quota/ext_time_quota_acl.cc index 40f0c35aba..d637ae014a 100644 --- a/helpers/external_acl/time_quota/ext_time_quota_acl.cc +++ b/helpers/external_acl/time_quota/ext_time_quota_acl.cc @@ -447,7 +447,7 @@ int main(int argc, char **argv) // we expect the following line syntax: %LOGIN const char *user_key = strtok(request, " \n"); if (!user_key) { - SEND_BH("message=\"User name missing\""); + SEND_ERR("User name missing"); continue; } processActivity(user_key);