[git] GPGME - branch, master, updated. gpgme-1.3.1-16-gff0a640
by Marcus Brinkmann
cvs at cvs.gnupg.org
Mon Mar 12 17:39:48 CET 2012
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 "GnuPG Made Easy".
The branch, master has been updated
via ff0a640a18e7b7457e6c2edfdc8307bf44628b60 (commit)
from ced1ad01aed32d1e4c5000f3b901db018ef7bf1e (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 ff0a640a18e7b7457e6c2edfdc8307bf44628b60
Author: Marcus Brinkmann <marcus.brinkmann at ruhr-uni-bochum.de>
Date: Mon Mar 12 16:37:26 2012 +0100
Do not rely on glibc name of syscall.
* src/ath.c (ath_self): Use __NR_gettid, not SYS_gettid.
diff --git a/src/ath.c b/src/ath.c
index e5b9964..ab65f7e 100644
--- a/src/ath.c
+++ b/src/ath.c
@@ -67,7 +67,7 @@ uintptr_t
ath_self (void)
{
/* Just to catch users who don't use gpgme-pthread. */
- return (uintptr_t) syscall (SYS_gettid);
+ return (uintptr_t) syscall (__NR_gettid);
}
# else
uintptr_t
-----------------------------------------------------------------------
Summary of changes:
src/ath.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
GnuPG Made Easy
http://git.gnupg.org
More information about the Gnupg-commits
mailing list