From 30bf21401c900c07eaac2231467aa5044dfd7bc7 Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Sat, 11 Apr 2020 10:02:09 +1000 Subject: [PATCH] gss: fix copy/paste error in gss_destroy_cred() gss_destroy_cred() was missing a calling convention, instead had the import declaration twice --- lib/gssapi/mech/gss_destroy_cred.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gssapi/mech/gss_destroy_cred.c b/lib/gssapi/mech/gss_destroy_cred.c index 93c810991..5b7fafcec 100644 --- a/lib/gssapi/mech/gss_destroy_cred.c +++ b/lib/gssapi/mech/gss_destroy_cred.c @@ -43,7 +43,7 @@ * @ingroup gssapi */ -GSSAPI_LIB_FUNCTION OM_uint32 GSSAPI_LIB_FUNCTION +GSSAPI_LIB_FUNCTION OM_uint32 GSSAPI_LIB_CALL gss_destroy_cred(OM_uint32 *minor_status, gss_cred_id_t *cred_handle) {