summaryrefslogtreecommitdiff
path: root/security/libgcrypt/patches
diff options
context:
space:
mode:
authorwiz <wiz>2005-10-06 12:20:41 +0000
committerwiz <wiz>2005-10-06 12:20:41 +0000
commitc4d5e2f24fdda19313d7512b15aa05094fcb9418 (patch)
treebd9245ecaf271a8874d00c74d377882655afba22 /security/libgcrypt/patches
parente9ec71aa27c08c514eae03aad8686336c2907809 (diff)
downloadpkgsrc-c4d5e2f24fdda19313d7512b15aa05094fcb9418.tar.gz
Update to 1.2.2:
Noteworthy changes in version 1.2.2 (2005-10-05} ------------------------------------------------ * Made the RNG immune against fork without exec. * Minor changes to some function declarations. Buffer arguments are now typed as void pointer. This should not affect any compilation. * A bug in the definition of gcry_cipher_register has been fixed. * Interface changes relative to the 1.2.1 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gcry_cipher_encrypt CHANGED: Arguments IN and OUT are now void*. gcry_cipher_decrypt CHANGED: Arguments IN and OUT are now void*. gcry_create_nonce CHANGED: Argument BUFFER is now void*. gcry_md_ctl CHANGED: Argument BUFFER is now void*. gcry_sexp_sprint CHANGED: Argument BUFFER is now void*. gcry_mpi_scan CHANGED: Argument BUFFER is now void*. gcry_cipher_register CHANGED: Argument ALGORITHM_ID is now int*. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Diffstat (limited to 'security/libgcrypt/patches')
-rw-r--r--security/libgcrypt/patches/patch-ae18
1 files changed, 9 insertions, 9 deletions
diff --git a/security/libgcrypt/patches/patch-ae b/security/libgcrypt/patches/patch-ae
index 25e95eba373..001a11c3100 100644
--- a/security/libgcrypt/patches/patch-ae
+++ b/security/libgcrypt/patches/patch-ae
@@ -1,6 +1,6 @@
-$NetBSD: patch-ae,v 1.2 2005/03/10 15:38:33 tv Exp $
+$NetBSD: patch-ae,v 1.3 2005/10/06 12:20:41 wiz Exp $
---- src/ath.h.orig Thu Nov 25 14:29:26 2004
+--- src/ath.h.orig 2005-07-29 15:45:42.000000000 +0200
+++ src/ath.h
@@ -31,6 +31,12 @@
@@ -30,18 +30,18 @@ $NetBSD: patch-ae,v 1.2 2005/03/10 15:38:33 tv Exp $
#else
ssize_t (*select) (int nfd, fd_set *rset, fd_set *wset, fd_set *eset,
struct timeval *timeout);
-@@ -117,6 +131,14 @@ ssize_t ath_select (int nfd, void *rset,
- ssize_t ath_waitpid (pid_t pid, int *status, int options);
- int ath_accept (int s, void *addr, int *length_ptr);
+@@ -119,6 +133,14 @@ int ath_accept (int s, void *addr, int *
int ath_connect (int s, void *addr, int length);
-+int ath_sendmsg (int s, const void *msg, int flags);
-+int ath_recvmsg (int s, void *msg, int flags);
+ int ath_sendmsg (int s, const void *msg, int flags);
+ int ath_recvmsg (int s, void *msg, int flags);
+#elif defined(__INTERIX)
+ssize_t ath_select (int nfd, fd_set *rset, fd_set *wset, fd_set *eset,
+ struct timeval *timeout);
+ssize_t ath_waitpid (pid_t pid, int *status, int options);
+int ath_accept (int s, struct sockaddr *addr, socklen_t *length_ptr);
+int ath_connect (int s, struct sockaddr *addr, socklen_t length);
- int ath_sendmsg (int s, const void *msg, int flags);
- int ath_recvmsg (int s, void *msg, int flags);
++int ath_sendmsg (int s, const void *msg, int flags);
++int ath_recvmsg (int s, void *msg, int flags);
#else
+ ssize_t ath_select (int nfd, fd_set *rset, fd_set *wset, fd_set *eset,
+ struct timeval *timeout);