diff options
author | Carlo Marcelo Arenas Belón <carenas@gmail.com> | 2020-05-04 18:39:06 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-05-04 22:56:33 -0700 |
commit | bb987657690b447ae9162ef3a5841d26eb82d806 (patch) | |
tree | 54951abd95a4a658a5e03d431fcdd6425eed71f5 | |
parent | credential: update description for credential_from_url_gently (diff) | |
download | tgif-bb987657690b447ae9162ef3a5841d26eb82d806.tar.xz |
credential: correct order of parameters for credential_match
Since the beginning in 118250728e (credential: apply helper config,
2011-12-10), the declaration for that function used a different order
than the implementation.
All callers use the same order than the implementation, so update
the declaration in credential.h to match.
Reviewed-by: Jeff King <peff@peff.net>
Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | credential.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/credential.h b/credential.h index f51703d9ce..c0e17e3554 100644 --- a/credential.h +++ b/credential.h @@ -189,7 +189,7 @@ void credential_write(const struct credential *, FILE *); void credential_from_url(struct credential *, const char *url); int credential_from_url_gently(struct credential *, const char *url, int quiet); -int credential_match(const struct credential *have, - const struct credential *want); +int credential_match(const struct credential *want, + const struct credential *have); #endif /* CREDENTIAL_H */ |