diff options
author | 2003-09-23 20:17:11 +0000 | |
---|---|---|
committer | 2003-09-23 20:17:11 +0000 | |
commit | b8b8936d994927e3a0afdbb493b901039038a5d1 (patch) | |
tree | cb294d035132ecd2afeb1ba6a2bf6281efd34944 /usr.bin/ssh/ssh-gss.h | |
parent | simplify by using getifaddrs. cedric@ ok (diff) | |
download | wireguard-openbsd-b8b8936d994927e3a0afdbb493b901039038a5d1.tar.xz wireguard-openbsd-b8b8936d994927e3a0afdbb493b901039038a5d1.zip |
replace fatal_cleanup() and linked list of fatal callbacks with static
cleanup_exit() function. re-refine cleanup_exit() where appropriate,
allocate sshd's authctxt eary to allow simpler cleanup in sshd.
tested by many, ok deraadt@
Diffstat (limited to 'usr.bin/ssh/ssh-gss.h')
-rw-r--r-- | usr.bin/ssh/ssh-gss.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-gss.h b/usr.bin/ssh/ssh-gss.h index 263e51b94e0..71e288ea30d 100644 --- a/usr.bin/ssh/ssh-gss.h +++ b/usr.bin/ssh/ssh-gss.h @@ -101,7 +101,7 @@ OM_uint32 ssh_gssapi_server_ctx(Gssctxt **ctx, gss_OID oid); int ssh_gssapi_userok(char *name); void ssh_gssapi_do_child(char ***envp, u_int *envsizep); -void ssh_gssapi_cleanup_creds(void *ignored); +void ssh_gssapi_cleanup_creds(void); void ssh_gssapi_storecreds(void); #endif /* GSSAPI */ |