2005-09-26 [paul] 1.9.14cvs52

* src/common/passcrypt.c
		this 'workaround' not necessary on NetBSD.
		Thanks to Daniel Gustafson
This commit is contained in:
Paul Mangan 2005-09-26 16:25:56 +00:00
parent f454726233
commit fbf945dc88
4 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2005-09-26 [paul] 1.9.14cvs52
* src/common/passcrypt.c
this 'workaround' not necessary on NetBSD.
Thanks to Daniel Gustafson
2005-09-26 [paul]
1.9.15-rc4 released

View file

@ -820,3 +820,4 @@
( cvs diff -u -r 1.65.2.38 -r 1.65.2.39 src/codeconv.c; cvs diff -u -r 1.15.2.12 -r 1.15.2.13 src/codeconv.h; cvs diff -u -r 1.382.2.175 -r 1.382.2.176 src/compose.c; cvs diff -u -r 1.50.2.12 -r 1.50.2.13 src/compose.h; cvs diff -u -r 1.204.2.58 -r 1.204.2.59 src/prefs_common.c; cvs diff -u -r 1.103.2.29 -r 1.103.2.30 src/prefs_common.h; cvs diff -u -r 1.22.2.13 -r 1.22.2.14 src/quote_fmt_parse.y; cvs diff -u -r 1.395.2.126 -r 1.395.2.127 src/summaryview.c; ) > 1.9.14cvs49.patchset
( cvs diff -u -r 1.150.2.46 -r 1.150.2.47 src/procmsg.c; ) > 1.9.14cvs50.patchset
( cvs diff -u -r 1.395.2.127 -r 1.395.2.128 src/summaryview.c; cvs diff -u -r 1.3.2.1 -r 1.3.2.2 src/common/passcrypt.c; ) > 1.9.14cvs51.patchset
( cvs diff -u -r 1.3.2.2 -r 1.3.2.3 src/common/passcrypt.c; ) > 1.9.14cvs52.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=9
MICRO_VERSION=14
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=51
EXTRA_VERSION=52
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -26,7 +26,7 @@
#include <stdlib.h>
#include <unistd.h>
#if (defined (__NetBSD__) || defined (__FreeBSD__))
#if defined (__FreeBSD__)
#include <rpc/des_crypt.h>
#endif
@ -58,7 +58,7 @@ void passcrypt_decrypt(gchar *password, guint len)
unsigned char crypt_cfb_iv[64];
int crypt_cfb_blocksize = 8; /* 8 for DES */
#if (defined (__NetBSD__) || defined (__FreeBSD__))
#if defined (__FreeBSD__)
void
crypt_cfb_buf(const char key[8], unsigned char *buf, unsigned len,
unsigned chunksize, int decrypt)