diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-03-22 02:50:06 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-03-22 02:50:06 +0000 |
commit | 08105192fdb9441284ac37e309f6359d74aee596 (patch) | |
tree | 0385aa0aaaa5f7e870bafcf6dca61a2270d53ef5 /sshd.c | |
parent | cb1f60efb552d1f12e4a92fdf4939faa18394f27 (diff) |
- markus@cvs.openbsd.org 2002/03/19 10:35:39
[auth-options.c auth.h session.c session.h sshd.c]
clean up prototypes
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -42,7 +42,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.232 2002/03/19 03:03:43 stevesk Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.233 2002/03/19 10:35:39 markus Exp $"); #include <openssl/dh.h> #include <openssl/bn.h> @@ -516,7 +516,7 @@ demote_sensitive_data(void) /* We do not clear ssh1_host key and cookie. XXX - Okay Niels? */ } -void +static void privsep_preauth_child(void) { u_int32_t rand[256]; @@ -546,7 +546,7 @@ privsep_preauth_child(void) setuid(options.unprivileged_user); } -void +static void privsep_postauth(Authctxt *authctxt, pid_t pid) { extern Authctxt *x_authctxt; |