diff options
author | assar <assar@FreeBSD.org> | 2001-03-23 19:38:21 +0000 |
---|---|---|
committer | assar <assar@FreeBSD.org> | 2001-03-23 19:38:21 +0000 |
commit | 214d8eb0386a236dd94ce9f3e81d3b4ecaef426b (patch) | |
tree | d0cfd87435ad294710be7a9635e861a2952d35ec /secure | |
parent | 24f4ef1037aa23b2770d1de861eba2f074aac54a (diff) | |
download | FreeBSD-src-214d8eb0386a236dd94ce9f3e81d3b4ecaef426b.zip FreeBSD-src-214d8eb0386a236dd94ce9f3e81d3b4ecaef426b.tar.gz |
disable SRA
this impacts negatively to POLA since once autologin is enabled,
telnet will prompt for a password using getpass() and thus not allow
the usual signal characters or C-]
Diffstat (limited to 'secure')
-rw-r--r-- | secure/lib/libtelnet/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/lib/libtelnet/Makefile b/secure/lib/libtelnet/Makefile index 33e1ee5..17cab4f 100644 --- a/secure/lib/libtelnet/Makefile +++ b/secure/lib/libtelnet/Makefile @@ -3,10 +3,10 @@ LIB= telnet SRCS= genget.c getent.c misc.c encrypt.c auth.c \ - enc_des.c sra.c pk.c + enc_des.c pk.c CFLAGS+= -DHAS_CGETENT -DENCRYPTION -DDES_ENCRYPTION -DAUTHENTICATION \ - -DSRA -I${TELNETDIR} \ + -I${TELNETDIR} \ NOPIC= yes |