summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh.h
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>1999-11-10 22:24:02 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>1999-11-10 22:24:02 +0000
commitfdbbe9d996f09ecbd4f5c6cdafd452dcf2a32cfd (patch)
tree2fa144182eda9f9f7be565a2bb3ea8e80b6a4b21 /usr.bin/ssh/ssh.h
parentbc9e909965e411498ba0bc784d8b3580bfceed90 (diff)
remove x11- and krb-cleanup from fatal() + krb-cleanup cleanup
Diffstat (limited to 'usr.bin/ssh/ssh.h')
-rw-r--r--usr.bin/ssh/ssh.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/usr.bin/ssh/ssh.h b/usr.bin/ssh/ssh.h
index 62b1ca3188e..abf3303fad6 100644
--- a/usr.bin/ssh/ssh.h
+++ b/usr.bin/ssh/ssh.h
@@ -13,7 +13,7 @@ Generic header file for ssh.
*/
-/* RCSID("$Id: ssh.h,v 1.16 1999/11/02 19:10:15 markus Exp $"); */
+/* RCSID("$Id: ssh.h,v 1.17 1999/11/10 22:24:01 markus Exp $"); */
#ifndef SSH_H
#define SSH_H
@@ -402,7 +402,7 @@ void fatal(const char *fmt, ...);
from the function. */
void fatal_add_cleanup(void (*proc)(void *context), void *context);
-/* Removes a cleanup frunction to be called at fatal(). */
+/* Removes a cleanup function to be called at fatal(). */
void fatal_remove_cleanup(void (*proc)(void *context), void *context);
/*---------------- definitions for channels ------------------*/
@@ -518,9 +518,6 @@ void x11_request_forwarding(void);
This should be called in the client only. */
void x11_request_forwarding_with_spoofing(const char *proto, const char *data);
-/* Local Xauthority file (server only). */
-extern char *xauthfile;
-
/* Sends a message to the server to request authentication fd forwarding. */
void auth_request_forwarding(void);
@@ -567,7 +564,8 @@ struct envstring {
0 if the client could not be authenticated, and 1 if authentication was
successful. This may exit if there is a serious protocol violation. */
int auth_krb4(const char *server_user, KTEXT auth, char **client);
-int ssh_tf_init(uid_t uid);
+int krb4_init(uid_t uid);
+void krb4_cleanup_proc(void *ignore);
#ifdef AFS
#include <kafs.h>