From: Christof Schmitt Date: Mon, 11 Nov 2019 20:08:28 +0000 (-0700) Subject: krb5_plugin: Use C99 initializer X-Git-Tag: talloc-2.3.1~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1aef796e302058ad3327613964fa89abaf940c1c;p=thirdparty%2Fsamba.git krb5_plugin: Use C99 initializer BUG: https://bugzilla.samba.org/show_bug.cgi?id=14179 Signed-off-by: Christof Schmitt Reviewed-by: Andrew Bartlett --- diff --git a/nsswitch/krb5_plugin/winbind_krb5_locator.c b/nsswitch/krb5_plugin/winbind_krb5_locator.c index 518c871b248..a31c0822370 100644 --- a/nsswitch/krb5_plugin/winbind_krb5_locator.c +++ b/nsswitch/krb5_plugin/winbind_krb5_locator.c @@ -409,10 +409,10 @@ static krb5_error_code smb_krb5_locator_lookup(void *private_data, #endif const krb5plugin_service_locate_ftable SMB_KRB5_LOCATOR_SYMBOL_NAME = { - 0, /* version */ - smb_krb5_locator_init, - smb_krb5_locator_close, - smb_krb5_locator_lookup, + .minor_version = 0, + .init = smb_krb5_locator_init, + .fini = smb_krb5_locator_close, + .lookup = smb_krb5_locator_lookup, }; #endif