e60182e67d92953946d1ea0ab789b056b74740dd jcasper Wed May 7 09:52:54 2025 -0700 Typo fix for false -> FALSE diff --git src/hg/lib/botDelay.c src/hg/lib/botDelay.c index 33ae0e54437..4204f8ce51b 100644 --- src/hg/lib/botDelay.c +++ src/hg/lib/botDelay.c @@ -95,31 +95,31 @@ { char *user = NULL; char *centralCookie = hUserCookie(); if (centralCookie) user = findCookieData(centralCookie); return user; } char *getBotCheckString(char *ip, double fraction) /* compose "user.ip fraction" string for bot check */ { char *user = getCookieUser(); char *botCheckString = needMem(256); -boolean useNew = cfgOptionBooleanDefault("newBotDelay", false); +boolean useNew = cfgOptionBooleanDefault("newBotDelay", FALSE); if (useNew) { char *hgsid = cgiOptionalString("hgsid"); if (user) safef(botCheckString, 256, "uid%s %f", user, fraction); else { if (hgsid) safef(botCheckString, 256, "sid%s %f", hgsid, fraction); else safef(botCheckString, 256, "%s %f", ip, fraction); } } else {