diff options
author | 2001-01-18 17:12:43 +0000 | |
---|---|---|
committer | 2001-01-18 17:12:43 +0000 | |
commit | 0ce5b4b92a39236fefb7b58f7267b24884d370e1 (patch) | |
tree | 3659d7fe88eeebb39829bdda55dbef6800a7ad14 | |
parent | 1) removes fake skey from sshd, since this will be much (diff) | |
download | wireguard-openbsd-0ce5b4b92a39236fefb7b58f7267b24884d370e1.tar.xz wireguard-openbsd-0ce5b4b92a39236fefb7b58f7267b24884d370e1.zip |
rename *-skey.c *-chall.c since the files are not skey specific
-rw-r--r-- | usr.bin/ssh/auth-chall.c (renamed from usr.bin/ssh/auth-skey.c) | 2 | ||||
-rw-r--r-- | usr.bin/ssh/auth2-chall.c (renamed from usr.bin/ssh/auth2-skey.c) | 2 | ||||
-rw-r--r-- | usr.bin/ssh/sshd/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/auth-skey.c b/usr.bin/ssh/auth-chall.c index 156fee41ea3..e02e99d36a6 100644 --- a/usr.bin/ssh/auth-skey.c +++ b/usr.bin/ssh/auth-chall.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth-skey.c,v 1.10 2001/01/18 16:59:59 markus Exp $"); +RCSID("$OpenBSD: auth-chall.c,v 1.1 2001/01/18 17:12:43 markus Exp $"); #include "ssh.h" #include "auth.h" diff --git a/usr.bin/ssh/auth2-skey.c b/usr.bin/ssh/auth2-chall.c index 7339ff01b74..77294f4b895 100644 --- a/usr.bin/ssh/auth2-skey.c +++ b/usr.bin/ssh/auth2-chall.c @@ -22,7 +22,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: auth2-skey.c,v 1.3 2001/01/18 16:59:59 markus Exp $"); +RCSID("$OpenBSD: auth2-chall.c,v 1.1 2001/01/18 17:12:43 markus Exp $"); #include "ssh.h" #include "ssh2.h" diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile index 20b52da6a40..66e93db58d5 100644 --- a/usr.bin/ssh/sshd/Makefile +++ b/usr.bin/ssh/sshd/Makefile @@ -10,7 +10,7 @@ CFLAGS+=-DHAVE_LOGIN_CAP SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \ pty.c log-server.c login.c servconf.c serverloop.c \ auth.c auth1.c auth2.c auth-options.c session.c dh.c \ - auth-skey.c auth2-skey.c groupaccess.c + auth-chall.c auth2-chall.c groupaccess.c .include <bsd.own.mk> # for KERBEROS and AFS |