summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/monitor.h
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2003-09-23 20:17:12 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2003-09-23 20:17:12 +0000
commit2a189bfd0a5929ead66912f07789b8181460ec6c (patch)
treefb3806b30b6f7d9302a25f51952668806252810d /usr.bin/ssh/monitor.h
parent9c3c6364fdfeaa9e90ff68eab3b3b7d230517bbf (diff)
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/monitor.h')
-rw-r--r--usr.bin/ssh/monitor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/monitor.h b/usr.bin/ssh/monitor.h
index c0ef143fbdd..2afbfed6f44 100644
--- a/usr.bin/ssh/monitor.h
+++ b/usr.bin/ssh/monitor.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: monitor.h,v 1.11 2003/08/28 12:54:34 markus Exp $ */
+/* $OpenBSD: monitor.h,v 1.12 2003/09/23 20:17:11 markus Exp $ */
/*
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
@@ -70,7 +70,7 @@ void monitor_reinit(struct monitor *);
void monitor_sync(struct monitor *);
struct Authctxt;
-struct Authctxt *monitor_child_preauth(struct monitor *);
+void monitor_child_preauth(struct Authctxt *, struct monitor *);
void monitor_child_postauth(struct monitor *);
struct mon_table;