[svn] gpgme - r1490 - trunk/src
svn author marcus
cvs at cvs.gnupg.org
Thu Sep 2 23:33:27 CEST 2010
Author: marcus
Date: 2010-09-02 23:33:26 +0200 (Thu, 02 Sep 2010)
New Revision: 1490
Modified:
trunk/src/ChangeLog
trunk/src/error.c
Log:
2010-09-02 Marcus Brinkmann <marcus at g10code.de>
* error.c (gpgme_err_code_to_errno): Fix cut and paste bug (thanks
to Marc Mutz).
Modified: trunk/src/ChangeLog
===================================================================
--- trunk/src/ChangeLog 2010-09-01 00:46:19 UTC (rev 1489)
+++ trunk/src/ChangeLog 2010-09-02 21:33:26 UTC (rev 1490)
@@ -1,3 +1,8 @@
+2010-09-02 Marcus Brinkmann <marcus at g10code.de>
+
+ * error.c (gpgme_err_code_to_errno): Fix cut and paste bug (thanks
+ to Marc Mutz).
+
2010-09-01 Marcus Brinkmann <marcus at g10code.de>
* w32-io.c: Revert change from 2009-06-18, as it created a race
Modified: trunk/src/error.c
===================================================================
--- trunk/src/error.c 2010-09-01 00:46:19 UTC (rev 1489)
+++ trunk/src/error.c 2010-09-02 21:33:26 UTC (rev 1490)
@@ -71,7 +71,7 @@
int
gpgme_err_code_to_errno (gpgme_err_code_t code)
{
- return gpg_err_code_from_errno (code);
+ return gpg_err_code_to_errno (code);
}
More information about the Gnupg-commits
mailing list