diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-01-19 16:44:10 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-01-19 16:44:10 +0100 |
commit | cf0809d6444bcc0030c9cb82ebc592a261023fe4 (patch) | |
tree | 85ff44157c4ceefcd62d6bbb47f5b1e07fe18da5 /sshd.c | |
parent | - (bal) Minor cygwin patch to auth1.c. Suggested by djm. (diff) | |
download | openssh-cf0809d6444bcc0030c9cb82ebc592a261023fe4.tar.xz openssh-cf0809d6444bcc0030c9cb82ebc592a261023fe4.zip |
Removed one more 'ISSUE' comment in auth1.c
20010120
- (bal) OpenBSD Resync
- markus@cvs.openbsd.org 2001/01/19 12:45:26
[ssh-chall.c servconf.c servconf.h ssh.h sshd.c]
only auth-chall.c needs #ifdef SKEY
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.152 2001/01/18 16:20:22 markus Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.153 2001/01/19 12:45:27 markus Exp $"); #include "xmalloc.h" #include "rsa.h" @@ -1250,10 +1250,8 @@ do_ssh1_kex(void) if (options.afs_token_passing) auth_mask |= 1 << SSH_PASS_AFS_TOKEN; #endif -#ifdef SKEY if (options.skey_authentication == 1) auth_mask |= 1 << SSH_AUTH_TIS; -#endif if (options.password_authentication) auth_mask |= 1 << SSH_AUTH_PASSWORD; packet_put_int(auth_mask); |