medsrv: Add missing return to avoid infinite loop while verifying username

This commit is contained in:
Tobias Brunner
2026-07-21 10:37:43 +02:00
parent fcac9fe5df
commit bdbdd46941
+1
View File
@@ -149,6 +149,7 @@ static bool verify_login(private_user_controller_t *this,
default:
request->setf(request, "error=Username invalid, "
"valid characters: A-Z a-z 0-9 - _ @ .");
return FALSE;
}
}
return TRUE;