diff options
author | nsayer <nsayer@FreeBSD.org> | 2001-05-07 20:38:39 +0000 |
---|---|---|
committer | nsayer <nsayer@FreeBSD.org> | 2001-05-07 20:38:39 +0000 |
commit | ce2648b0d2ae4682634f37e718bdc59869d8d572 (patch) | |
tree | b76a13333281459d6f19967452db096129c933e6 /secure/libexec | |
parent | fa8314227c51816057f11e1672444bbae7baed35 (diff) | |
download | FreeBSD-src-ce2648b0d2ae4682634f37e718bdc59869d8d572.zip FreeBSD-src-ce2648b0d2ae4682634f37e718bdc59869d8d572.tar.gz |
Add PAM support to SRA authentication. Cribbed mostly from ftpd. This
doesn't solve the problem of root being allowed to log in, but that sort
of thing is something PAM should be doing anyway.
Diffstat (limited to 'secure/libexec')
-rw-r--r-- | secure/libexec/telnetd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/secure/libexec/telnetd/Makefile b/secure/libexec/telnetd/Makefile index 7dffb39..47b1841 100644 --- a/secure/libexec/telnetd/Makefile +++ b/secure/libexec/telnetd/Makefile @@ -15,7 +15,7 @@ SRCS= global.c slc.c state.c sys_term.c telnetd.c \ DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} ${LIBCRYPTO} ${LIBMP} \ ${LIBCRYPT} -LDADD= -lutil -ltermcap ${LIBTELNET} -lcrypto -lcrypt -lmp +LDADD= -lutil -ltermcap ${LIBTELNET} -lcrypto -lcrypt -lmp -lpam .include <bsd.prog.mk> |