diff options
Diffstat (limited to 'libc/inet/rpc/svc_auth.c')
-rw-r--r-- | libc/inet/rpc/svc_auth.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/inet/rpc/svc_auth.c b/libc/inet/rpc/svc_auth.c index 435f816d5..29e893a88 100644 --- a/libc/inet/rpc/svc_auth.c +++ b/libc/inet/rpc/svc_auth.c @@ -60,9 +60,9 @@ enum auth_stat _svcauth_short(); /* short hand unix style */ static struct { enum auth_stat (*authenticator) (); } svcauthsw[] = { - _svcauth_null, /* AUTH_NULL */ - _svcauth_unix, /* AUTH_UNIX */ - _svcauth_short, /* AUTH_SHORT */ + {_svcauth_null}, /* AUTH_NULL */ + {_svcauth_unix}, /* AUTH_UNIX */ + {_svcauth_short}, /* AUTH_SHORT */ }; #define AUTH_MAX 2 /* HIGHEST AUTH NUMBER */ |