Skip to content

Commit

Permalink
Merge pull request #51 from DerDakon/no-crypt-compile
Browse files Browse the repository at this point in the history
fix compile error when HAVE_CRYPT is not set
  • Loading branch information
svarshavchik authored Sep 22, 2023
2 parents 7543161 + 9eaba54 commit 64e325c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion courier-authlib/checkpassword.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ static int do_authcheckpassword(const char *password, const char *encrypted_pass
return safe_strcmp(encrypted_password, cpass);
}
#else
return safe_strcmp(encrypted_password, password)
return safe_strcmp(encrypted_password, password);
#endif
}

Expand Down

0 comments on commit 64e325c

Please sign in to comment.