diff options
author | 1999-09-29 18:27:23 +0000 | |
---|---|---|
committer | 1999-09-29 18:27:23 +0000 | |
commit | c7667da952893b45f26cbb4fe71f74dfe5d1be91 (patch) | |
tree | a7ee97706c75a921ae9e8a6e8abd853b7a47f06f /usr.bin/ssh/ssh.c | |
parent | update krb4/AFS support to ssh-1.2.27-afs-kerberos-pl1 level, clean up unused variables, update manpages (diff) | |
download | wireguard-openbsd-c7667da952893b45f26cbb4fe71f74dfe5d1be91.tar.xz wireguard-openbsd-c7667da952893b45f26cbb4fe71f74dfe5d1be91.zip |
global original_real_uid
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 0ff702eba61..1dd225aa0a4 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -18,7 +18,7 @@ Modified to work with SSL by Niels Provos <provos@citi.umich.edu> in Canada. */ #include "includes.h" -RCSID("$Id: ssh.c,v 1.9 1999/09/29 18:16:20 dugsong Exp $"); +RCSID("$Id: ssh.c,v 1.10 1999/09/29 18:27:23 dugsong Exp $"); #include "xmalloc.h" #include "ssh.h" @@ -75,6 +75,8 @@ int host_private_key_loaded = 0; /* Host private key. */ RSA *host_private_key = NULL; +/* Original real UID. */ +uid_t original_real_uid; /* Prints a help message to the user. This function never returns. */ @@ -179,7 +181,6 @@ main(int ac, char **av) struct stat st; struct passwd *pw, pwcopy; int interactive = 0, dummy; - static uid_t original_real_uid; uid_t original_effective_uid; int plen; |