summaryrefslogtreecommitdiffstats
path: root/usr.bin/enigma
diff options
context:
space:
mode:
authorsjg <sjg@FreeBSD.org>2015-05-27 01:19:58 +0000
committersjg <sjg@FreeBSD.org>2015-05-27 01:19:58 +0000
commit65145fa4c81da358fcbc3b650156dab705dfa34e (patch)
tree55c065b6730aaac2afb6c29933ee6ec5fa4c4249 /usr.bin/enigma
parent60ff4eb0dff94a04d75d0d52a3957aaaf5f8c693 (diff)
parente6b664c390af88d4a87208bc042ce503da664c3b (diff)
downloadFreeBSD-src-65145fa4c81da358fcbc3b650156dab705dfa34e.zip
FreeBSD-src-65145fa4c81da358fcbc3b650156dab705dfa34e.tar.gz
Merge sync of head
Diffstat (limited to 'usr.bin/enigma')
-rw-r--r--usr.bin/enigma/Makefile3
-rw-r--r--usr.bin/enigma/enigma.c5
2 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/enigma/Makefile b/usr.bin/enigma/Makefile
index 32a670b..55fcc46 100644
--- a/usr.bin/enigma/Makefile
+++ b/usr.bin/enigma/Makefile
@@ -5,7 +5,6 @@ PROG= enigma
LINKS= ${BINDIR}/enigma ${BINDIR}/crypt
MLINKS= enigma.1 crypt.1
-DPADD= ${LIBCRYPT}
-LDADD= -lcrypt
+LIBADD= crypt
.include <bsd.prog.mk>
diff --git a/usr.bin/enigma/enigma.c b/usr.bin/enigma/enigma.c
index 893766e..e476e65 100644
--- a/usr.bin/enigma/enigma.c
+++ b/usr.bin/enigma/enigma.c
@@ -43,6 +43,11 @@ setup(char *pw)
int32_t seed;
char *cryptpw;
+ if (crypt_set_format("des") == 0) {
+ fprintf(stderr, "crypt_set_format(\"des\") failed.\n");
+ exit(1);
+ }
+
strlcpy(salt, pw, sizeof(salt));
cryptpw = crypt(pw, salt);
if (cryptpw == NULL) {
OpenPOWER on IntegriCloud