diff options
author | ngie <ngie@FreeBSD.org> | 2016-12-03 17:10:37 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2016-12-03 17:10:37 +0000 |
commit | bf027d30f65946c403cff801d75f469e39fa3e48 (patch) | |
tree | adb91d1373bf2713966c46ecfadaa47a2108bd57 /lib/libc/rpc/auth_des.c | |
parent | 7e1697c9902f5cbbfaf68ccd4c9423153c76f3b3 (diff) | |
download | FreeBSD-src-bf027d30f65946c403cff801d75f469e39fa3e48.zip FreeBSD-src-bf027d30f65946c403cff801d75f469e39fa3e48.tar.gz |
MFC r287350:
r287350 (by rodrigc):
Use ANSI C prototypes.
Eliminates gcc 4.9 warnings.
Diffstat (limited to 'lib/libc/rpc/auth_des.c')
-rw-r--r-- | lib/libc/rpc/auth_des.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/rpc/auth_des.c b/lib/libc/rpc/auth_des.c index 1bc2661..400948b 100644 --- a/lib/libc/rpc/auth_des.c +++ b/lib/libc/rpc/auth_des.c @@ -69,7 +69,7 @@ __FBSDID("$FreeBSD$"); extern bool_t xdr_authdes_cred( XDR *, struct authdes_cred *); extern bool_t xdr_authdes_verf( XDR *, struct authdes_verf *); -extern int key_encryptsession_pk(); +extern int key_encryptsession_pk(char *, netobj *, des_block *); extern bool_t __rpc_get_time_offset(struct timeval *, nis_server *, char *, char **, char **); |