mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 00:02:14 -04:00
rpcsec_gss: Use a designated initializer for rpc_gss_ops
No functional change intended. MFC after: 1 week Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
16f8f89c5c
commit
ba5bc6e8f9
1 changed files with 5 additions and 5 deletions
|
|
@ -98,11 +98,11 @@ static void rpc_gss_destroy(AUTH *);
|
|||
static void rpc_gss_destroy_context(AUTH *, bool_t);
|
||||
|
||||
static struct auth_ops rpc_gss_ops = {
|
||||
rpc_gss_nextverf,
|
||||
rpc_gss_marshal,
|
||||
rpc_gss_validate,
|
||||
rpc_gss_refresh,
|
||||
rpc_gss_destroy,
|
||||
.ah_nextverf = rpc_gss_nextverf,
|
||||
.ah_marshal = rpc_gss_marshal,
|
||||
.ah_validate = rpc_gss_validate,
|
||||
.ah_refresh = rpc_gss_refresh,
|
||||
.ah_destroy = rpc_gss_destroy,
|
||||
};
|
||||
|
||||
enum rpcsec_gss_state {
|
||||
|
|
|
|||
Loading…
Reference in a new issue