lib/krb5: common_plugin_ftable_desc funcs KRB5_LIB_CALL

As with the krb5plugin_an2ln_ftable_desc, krb5plugin_db_ftable_desc,
and krb5plugin_kuserok_ftable_desc the function pointers in
common_plugin_ftable_desc must be annotated with KRB5_LIB_CALL.

Change-Id: Ia7ea78743ee9eb8c7f6b648063852ca91a360d2c
This commit is contained in:
Jeffrey Altman
2019-02-07 09:46:07 -05:00
committed by Jeffrey Altman
parent 32fe791c2e
commit df78c88cc0

View File

@@ -154,8 +154,8 @@ copy_internal_dso(const char *name)
*/
typedef struct common_plugin_ftable_desc {
int version;
krb5_error_code (*init)(krb5_context, void **);
void (*fini)(void *);
krb5_error_code (KRB5_LIB_CALL *init)(krb5_context, void **);
void (KRB5_LIB_CALL *fini)(void *);
} common_plugin_ftable;
struct krb5_plugin {