messages
This patch extends the helper protocols for Basic and Digest to provide
some basic information in error responses, and makes use of the error
response already included in the NTLM helper protocol, making these
messages available as %m in error pages. Can be used if desired to
indicate why a login failed. The exact messages returned is helper
dependent.
Forward port of 2.5 patch.
requestData->error = 0;
GetHHA1(requestData);
if (requestData->error) {
- printf("ERR\n");
+ printf("ERR No such user\n");
return;
}
printf("%s\n", requestData->HHA1);