diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-02-21 09:04:10 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-02-21 09:04:10 +0000 |
commit | 7676636392f7f92133b690fd75246e3c78460421 (patch) | |
tree | 726adb87dd17b9e006ee6adb62463ec34f45f102 /usr.bin | |
parent | f39dec7eaa758a5940e0ac0f248a5f77e12804cb (diff) |
move server only kex and monitor code to sshd.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/lib/Makefile | 5 | ||||
-rw-r--r-- | usr.bin/ssh/sshd/Makefile | 7 |
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/ssh/lib/Makefile b/usr.bin/ssh/lib/Makefile index 405a58b5a3f..2f8ff8d9ba7 100644 --- a/usr.bin/ssh/lib/Makefile +++ b/usr.bin/ssh/lib/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.38 2003/02/16 17:09:57 markus Exp $ +# $OpenBSD: Makefile,v 1.39 2003/02/21 09:04:09 markus Exp $ .PATH: ${.CURDIR}/.. @@ -9,8 +9,7 @@ SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \ rsa.c tildexpand.c ttymodes.c xmalloc.c atomicio.c \ key.c dispatch.c kex.c mac.c uuencode.c misc.c \ rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c \ - kexdhs.c kexdhc.c kexgexs.c kexgexc.c \ - scard.c monitor_wrap.c monitor_fdpass.c msg.c progressmeter.c + kexdhc.c kexgexc.c scard.c msg.c progressmeter.c DEBUGLIBS= no NOPROFILE= yes diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile index 14ef3e0717b..8b80e48f2ad 100644 --- a/usr.bin/ssh/sshd/Makefile +++ b/usr.bin/ssh/sshd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.51 2002/06/20 19:56:07 stevesk Exp $ +# $OpenBSD: Makefile,v 1.52 2003/02/21 09:04:09 markus Exp $ .PATH: ${.CURDIR}/.. @@ -13,9 +13,10 @@ SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \ sshpty.c sshlogin.c servconf.c serverloop.c uidswap.c \ auth.c auth1.c auth2.c auth-options.c session.c \ auth-chall.c auth2-chall.c groupaccess.c \ - auth-skey.c auth-bsdauth.c monitor_mm.c monitor.c \ + auth-skey.c auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c \ auth2-none.c auth2-passwd.c auth2-pubkey.c \ - auth2-hostbased.c auth2-kbdint.c + monitor_mm.c monitor.c monitor_wrap.c monitor_fdpass.c \ + kexdhs.c kexgexs.c .include <bsd.own.mk> # for KERBEROS and AFS |