get_auth_handler2: update to reflect username and password ask

Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
This commit is contained in:
Nikos Mavrogiannopoulos
2026-01-01 20:11:10 +01:00
parent 70d936ca95
commit ef075f6b83
2 changed files with 3 additions and 1 deletions

2
NEWS
View File

@@ -16,6 +16,8 @@
from being banned or cause premature unbans (#678)
- Session statistics are now reported at consistent intervals
for RADIUS compatibility (#630)
- Single form to enter username and password (#551)
* Version 1.3.0 (released 2024-05-05)
- Switch to https://github.com/nodejs/llhttp from http-parser.

View File

@@ -317,7 +317,7 @@ int get_auth_handler2(worker_st *ws, unsigned int http_ver, const char *pmsg,
} else {
/* Username / Groups Form */
if (pmsg == NULL)
pmsg = "Please enter your username.";
pmsg = "Please enter your username and password.";
ret = str_append_str(&str, login_start);
if (ret < 0) {