diff options
author | Marcus Brinkmann <[email protected]> | 2010-11-23 09:46:52 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2010-11-23 09:46:52 +0000 |
commit | eff0b7766ac364283f2fff48b5747d37ea1cf4eb (patch) | |
tree | 6b3119e70c8a04b8949d76e6e5062087420cde98 /src/gpgme.h.in | |
parent | 2010-11-19 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-eff0b7766ac364283f2fff48b5747d37ea1cf4eb.tar.gz gpgme-eff0b7766ac364283f2fff48b5747d37ea1cf4eb.zip |
2010-11-23 Marcus Brinkmann <[email protected]>
* gpgme.h.in (gpgme_conf_arg_new): Make VALUE arg const void *.
* gpgconf.c (_gpgme_conf_arg_new): Likewise.
(gpgme_conf_arg_new): Likewise.
* engine-gpgconf.c (_gpgme_conf_arg_new): Likewise.
(gpgconf_write): Remove debug hack.
Diffstat (limited to 'src/gpgme.h.in')
-rw-r--r-- | src/gpgme.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpgme.h.in b/src/gpgme.h.in index f84cd465..a70ff2ad 100644 --- a/src/gpgme.h.in +++ b/src/gpgme.h.in @@ -1999,7 +1999,7 @@ typedef struct gpgme_conf_comp to the string. Else, it should point to an unsigned or signed integer respectively. */ gpgme_error_t gpgme_conf_arg_new (gpgme_conf_arg_t *arg_p, - gpgme_conf_type_t type, void *value); + gpgme_conf_type_t type, const void *value); /* This also releases all chained argument structures! */ void gpgme_conf_arg_release (gpgme_conf_arg_t arg, gpgme_conf_type_t type); |