Searched refs:APR_EMISMATCH (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/apr-util/crypto/
H A Dapr_passwd.c79 * they match, or APR_EMISMATCH if they don't. If the platform doesn't
110 return (strcmp(passwd, hash) == 0) ? APR_SUCCESS : APR_EMISMATCH;
119 rv = APR_EMISMATCH;
121 rv = (strcmp(crypt_pw, hash) == 0) ? APR_SUCCESS : APR_EMISMATCH;
150 rv = APR_EMISMATCH;
152 rv = (strcmp(crypt_pw, hash) == 0) ? APR_SUCCESS : APR_EMISMATCH;
173 rv = APR_EMISMATCH;
176 rv = (strcmp(crypt_pw, hash) == 0) ? APR_SUCCESS : APR_EMISMATCH;
183 return (strcmp(sample, hash) == 0) ? APR_SUCCESS : APR_EMISMATCH;
/freebsd-11-stable/contrib/apr/include/
H A Dapr_user.h107 * APR_EMISMATCH if not, APR_BADARG if an apr_uid_t is invalid.
113 #define apr_uid_compare(left,right) (((left) == (right)) ? APR_SUCCESS : APR_EMISMATCH)
141 * APR_EMISMATCH if not, APR_BADARG if an apr_gid_t is invalid.
147 #define apr_gid_compare(left,right) (((left) == (right)) ? APR_SUCCESS : APR_EMISMATCH)
H A Dapr_errno.h277 * APR_EMISMATCH Two passwords do not match.
478 #define APR_EMISMATCH (APR_OS_START_STATUS + 24) macro
622 #define APR_STATUS_IS_EMISMATCH(s) ((s) == APR_EMISMATCH)
/freebsd-11-stable/contrib/apr/misc/unix/
H A Derrorcodes.c122 case APR_EMISMATCH:

Completed in 269 milliseconds