diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 6 | ||||
-rw-r--r-- | src/debug.c | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 608db50a..61bc3949 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2009-12-10 Werner Koch <[email protected]> + + * debug.c (debug_init): Test on sgid process. + 2009-12-08 Marcus Brinkmann <[email protected]> * Makefile.am (LTRCCOMPILE): Refactor with ... @@ -5810,7 +5814,7 @@ * wait.c: Include `engine.h'. (run_idle): Call _gpgme_engine_housecleaning(), not _gpgme_gpg_housecleaning(). - + 2001-12-18 Marcus Brinkmann <[email protected]> * key.c (_gpgme_key_append_name): Append, not prepend, the uid. diff --git a/src/debug.c b/src/debug.c index d3fce779..1471ff24 100644 --- a/src/debug.c +++ b/src/debug.c @@ -131,7 +131,11 @@ debug_init (void) if (s1) { #ifndef HAVE_DOSISH_SYSTEM - if (getuid () == geteuid ()) + if (getuid () == geteuid () +#if defined(HAVE_GETGID) && defined(HAVE_GETEGID) + && getgid () == getegid () +#endif + ) { #endif char *p; |