[git] GCRYPT - branch, master, updated. libgcrypt-1.7.3-46-g0a90f87
by Werner Koch
cvs at cvs.gnupg.org
Thu Dec 15 08:56:22 CET 2016
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU crypto library".
The branch, master has been updated
via 0a90f87799903a3fb97189ef7cba19e7b3534e1c (commit)
from 92abfca650397e1f5dfa3a5c7752eb380cc94d0e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0a90f87799903a3fb97189ef7cba19e7b3534e1c
Author: Werner Koch <wk at gnupg.org>
Date: Thu Dec 15 08:50:40 2016 +0100
Fix regression in broken mlock detection.
* acinclude.m4 (GNUPG_CHECK_MLOCK): Fix typo EGAIN->EAGAIN.
--
GnuPG-bug-id: 2870
Fixes-commit: 618b8978f46f4011c11512fd5f30c15e01652e2e
Co-authored-by: Nicolas Porcel <nicolasporcel06 at gmail.com>
Signed-off-by: Werner Koch <wk at gnupg.org>
diff --git a/acinclude.m4 b/acinclude.m4
index 90b3cb9..dcdadfd 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -242,7 +242,7 @@ int main()
pool += (pgsize - ((long int)pool % pgsize));
err = mlock( pool, 4096 );
- if( !err || errno == EPERM || errno == EGAIN)
+ if( !err || errno == EPERM || errno == EAGAIN)
return 0; /* okay */
return 1; /* hmmm */
-----------------------------------------------------------------------
Summary of changes:
acinclude.m4 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
The GNU crypto library
http://git.gnupg.org
_______________________________________________
Gnupg-commits mailing list
Gnupg-commits at gnupg.org
http://lists.gnupg.org/mailman/listinfo/gnupg-commits
More information about the Gcrypt-devel
mailing list