diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 2000-03-26 07:54:12 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 2000-03-26 07:54:12 +0000 |
| commit | 1ef4beca5f550dfd8b86c685dc8a4a60281cfc85 (patch) | |
| tree | 67fd92e55b6f5e05a4ad7c9b3850cc6bafcf85c7 | |
| parent | 3c6ae118864b10176ecb4d1c79c5851bfe0f6fc2 (diff) | |
Notes
| -rw-r--r-- | secure/usr.bin/ssh/Makefile | 2 | ||||
| -rw-r--r-- | secure/usr.sbin/sshd/Makefile | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/secure/usr.bin/ssh/Makefile b/secure/usr.bin/ssh/Makefile index 710d4fbfed36..54409b075bc5 100644 --- a/secure/usr.bin/ssh/Makefile +++ b/secure/usr.bin/ssh/Makefile @@ -10,7 +10,7 @@ MAN1= ssh.1 LINKS= ${BINDIR}/ssh ${BINDIR}/slogin MLINKS= ssh.1 slogin.1 -SRCS= ssh.c sshconnect.c log-client.c readconf.c clientloop.c +SRCS= clientloop.c key.c log-client.c readconf.c ssh.c sshconnect.c .include <bsd.own.mk> diff --git a/secure/usr.sbin/sshd/Makefile b/secure/usr.sbin/sshd/Makefile index 62ec36287923..3ac7555f2d65 100644 --- a/secure/usr.sbin/sshd/Makefile +++ b/secure/usr.sbin/sshd/Makefile @@ -9,9 +9,9 @@ BINOWN= root BINMODE=555 MAN8= sshd.8 -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 \ - login_access.c +SRCS= auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c \ + key.c log-server.c login.c login_access.c pty.c servconf.c \ + serverloop.c sshd.c \ CFLAGS+= -DLIBWRAP -DLOGIN_ACCESS -I${LOGINSRC} |
