Correct CRAM-MD5 authentication timeout problem

After successful login with the CRAM-MD5 mechanism, a timeout happens
while a server response is anticipated.
This commit is contained in:
Lefteris Chatzimparmpas 2011-08-04 08:06:42 +02:00
parent e51afea6eb
commit cf5e003082

View File

@ -68,6 +68,6 @@ auth_cram_md5(session *ssn, const char *user, const char *pass)
} else
return -1;
return response_authenticate(ssn, t, NULL);
return response_generic(ssn, t);
}
#endif /* NO_CRAMMD5 */