Change configuration option for REPLY_WHEN_BUSY ACCEPT > ALLOW

Signed-off-by: Marc <sticki@sticki.de>
This commit is contained in:
Marc
2022-07-15 10:44:52 +02:00
parent 351999cd61
commit 902fc2154a
+1 -1
View File
@@ -691,7 +691,7 @@ void read_FTLconf(void)
// defaults to: DROP
buffer = parse_FTLconf(fp, "REPLY_WHEN_BUSY");
if(buffer != NULL && strcasecmp(buffer, "ACCEPT") == 0)
if(buffer != NULL && strcasecmp(buffer, "ALLOW") == 0)
{
config.reply_when_busy = BUSY_ALLOW;
logg(" REPLY_WHEN_BUSY: Permit queries when the database is busy");