diff options
author | markus <> | 2002-09-10 16:31:57 +0000 |
---|---|---|
committer | markus <> | 2002-09-10 16:31:57 +0000 |
commit | 7d038e9d4d83e7c7120e78418e108df70b9025d6 (patch) | |
tree | baf775b286ff801a89f746b1938a3c700bba6822 /src/lib/libcrypto/des | |
parent | 3bd21dd4c3a3e3106321a5f6b3641ab9f18a6e3b (diff) | |
download | openbsd-7d038e9d4d83e7c7120e78418e108df70b9025d6.tar.gz openbsd-7d038e9d4d83e7c7120e78418e108df70b9025d6.tar.bz2 openbsd-7d038e9d4d83e7c7120e78418e108df70b9025d6.zip |
merge openssl-0.9.7-beta3, tested on vax by miod@
Diffstat (limited to 'src/lib/libcrypto/des')
-rw-r--r-- | src/lib/libcrypto/des/Makefile.ssl | 3 | ||||
-rw-r--r-- | src/lib/libcrypto/des/des_old.h | 2 | ||||
-rw-r--r-- | src/lib/libcrypto/des/read_pwd.c | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/libcrypto/des/Makefile.ssl b/src/lib/libcrypto/des/Makefile.ssl index 473810bec1..ee5849d8fa 100644 --- a/src/lib/libcrypto/des/Makefile.ssl +++ b/src/lib/libcrypto/des/Makefile.ssl | |||
@@ -108,7 +108,6 @@ files: | |||
108 | 108 | ||
109 | links: | 109 | links: |
110 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile | 110 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile |
111 | @sh $(TOP)/util/point.sh ../../perlasm asm/perlasm | ||
112 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | 111 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
113 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | 112 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
114 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 113 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
@@ -131,7 +130,7 @@ lint: | |||
131 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 130 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
132 | 131 | ||
133 | depend: | 132 | depend: |
134 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 133 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
135 | 134 | ||
136 | dclean: | 135 | dclean: |
137 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 136 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/des/des_old.h b/src/lib/libcrypto/des/des_old.h index 2bb5fa9d1b..2b7c0fc02a 100644 --- a/src/lib/libcrypto/des/des_old.h +++ b/src/lib/libcrypto/des/des_old.h | |||
@@ -362,7 +362,7 @@ int _ossl_old_des_enc_write(int fd,char *buf,int len,_ossl_old_des_key_schedule | |||
362 | _ossl_old_des_cblock *iv); | 362 | _ossl_old_des_cblock *iv); |
363 | char *_ossl_old_des_fcrypt(const char *buf,const char *salt, char *ret); | 363 | char *_ossl_old_des_fcrypt(const char *buf,const char *salt, char *ret); |
364 | char *_ossl_old_des_crypt(const char *buf,const char *salt); | 364 | char *_ossl_old_des_crypt(const char *buf,const char *salt); |
365 | #if !defined(PERL5) && !defined(__FreeBSD__) && !defined(NeXT) | 365 | #if !defined(PERL5) && !defined(NeXT) |
366 | char *_ossl_old_crypt(const char *buf,const char *salt); | 366 | char *_ossl_old_crypt(const char *buf,const char *salt); |
367 | #endif | 367 | #endif |
368 | void _ossl_old_des_ofb_encrypt(unsigned char *in,unsigned char *out, | 368 | void _ossl_old_des_ofb_encrypt(unsigned char *in,unsigned char *out, |
diff --git a/src/lib/libcrypto/des/read_pwd.c b/src/lib/libcrypto/des/read_pwd.c index 00000190f8..9061935f21 100644 --- a/src/lib/libcrypto/des/read_pwd.c +++ b/src/lib/libcrypto/des/read_pwd.c | |||
@@ -246,7 +246,7 @@ int des_read_pw(char *buf, char *buff, int size, const char *prompt, | |||
246 | long status; | 246 | long status; |
247 | unsigned short channel = 0; | 247 | unsigned short channel = 0; |
248 | #else | 248 | #else |
249 | #ifndef OPENSSL_SYS_MSDOS | 249 | #if !defined(OPENSSL_SYS_MSDOS) || defined(__DJGPP__) |
250 | TTY_STRUCT tty_orig,tty_new; | 250 | TTY_STRUCT tty_orig,tty_new; |
251 | #endif | 251 | #endif |
252 | #endif | 252 | #endif |