diff options
author | Werner Koch <[email protected]> | 2012-09-25 13:38:26 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2012-09-25 13:38:26 +0000 |
commit | c62b79a1d6e576d94e08cb81c2f5dbcb42ecf8cf (patch) | |
tree | 0c659d95d2a93943c65f86e2d8e626ad335081c8 /src/gpgme.h.in | |
parent | Remove all trailing whitespace from source files (diff) | |
download | gpgme-c62b79a1d6e576d94e08cb81c2f5dbcb42ecf8cf.tar.gz gpgme-c62b79a1d6e576d94e08cb81c2f5dbcb42ecf8cf.zip |
Add gpgme_set_global_flag to help debugging
* src/gpgme.c (gpgme_set_global_flag): New.
* src/gpgme.h.in (gpgme_set_global_flag): New.
* src/gpgme.def, src/libgpgme.vers: Add new public function.
* src/debug.c (envvar_override): New.:
(_gpgme_debug_set_debug_envvar): New.
(debug_init): Take ENVVAR_OVERRIDE in account.
--
On Android envvars can't be used, thus we need another way to enable
GPGME debugging. The new function allows this and may be used in the
future to implement similar things.
Diffstat (limited to '')
-rw-r--r-- | src/gpgme.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gpgme.h.in b/src/gpgme.h.in index 7263d983..ce469dee 100644 --- a/src/gpgme.h.in +++ b/src/gpgme.h.in @@ -2026,6 +2026,9 @@ gpgme_error_t gpgme_key_from_uid (gpgme_key_t *key, const char *name); /* Various functions. */ +/* Set special global flags; consult the manual before use. */ +int gpgme_set_global_flag (const char *name, const char *value); + /* Check that the library fulfills the version requirement. Note: This is here only for the case where a user takes a pointer from the old version of this function. The new version and macro for |