View | Details | Raw Unified | Return to bug 2112 | Differences between
and this patch

Collapse All | Expand All

(-)configure.ac (+1 lines)
Lines 1530-1535 AC_CHECK_FUNCS([ \ Link Here
1530
	bindresvport_sa \
1530
	bindresvport_sa \
1531
	clock \
1531
	clock \
1532
	closefrom \
1532
	closefrom \
1533
	crypt \
1533
	dirfd \
1534
	dirfd \
1534
	endgrent \
1535
	endgrent \
1535
	fchmod \
1536
	fchmod \
(-)openbsd-compat/xcrypt.c (-1 / +6 lines)
Lines 55-61 Link Here
55
55
56
# if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
56
# if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
57
#  include "md5crypt.h"
57
#  include "md5crypt.h"
58
# endif 
58
# endif
59
60
# if !defined(HAVE_CRYPT)
61
#  include <openssl/des.h>
62
#  define crypt DES_crypt
63
# endif
59
64
60
char *
65
char *
61
xcrypt(const char *password, const char *salt)
66
xcrypt(const char *password, const char *salt)

Return to bug 2112