You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
I I have a error on password override of otpd with ldap.
The problem are in errate use of strncmp.
strncmp return 0 when the string is equals:
if (strncmp(p, "{MD5}", 5)) {...
must change in
if (strncmp(p, "{MD5}", 5)==0) { ...
this erro are present in ldap.c and otp.c for password override.
Original issue reported on code.google.com by marcom1...@gmail.com on 12 Oct 2010 at 3:11
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
marcom1...@gmail.com
on 12 Oct 2010 at 3:11The text was updated successfully, but these errors were encountered: