diff options
author | Marcus Brinkmann <[email protected]> | 2010-04-19 16:59:23 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2010-04-19 16:59:23 +0000 |
commit | dfefe1b390bb5d15d7ef3e0564378a8139d2d335 (patch) | |
tree | e66ebe6016574d274ad441e95f8669f6a62152de /src/vfs-mount.c | |
parent | More robust detection of handle and sockets (diff) | |
download | gpgme-dfefe1b390bb5d15d7ef3e0564378a8139d2d335.tar.gz gpgme-dfefe1b390bb5d15d7ef3e0564378a8139d2d335.zip |
2010-04-19 Marcus Brinkmann <[email protected]>
* assuan-support.c (my_spawn): Cast to avoid warning.
* engine-g13.c (g13_new): Make ARGV array of pointer to const
char.
(g13_assuan_simple_command) [!USE_DESCRIPTOR_FUNCTION]: Don't define.
* ops.h (_gpgme_key_append_name): Same in prototype.
* key.c (_gpgme_key_append_name): Make SRC argument pointer to
const char.
* posix-util.c (_gpgme_get_uiserver_socket_path): Make HOMEDIR
const.
* vfs-mount.c (gpgme_op_vfs_transact_start): Never define this
potentially useful but currently unused function.
* vfs-create.c (gpgme_op_vfs_transact_start): Likewise.
Diffstat (limited to 'src/vfs-mount.c')
-rw-r--r-- | src/vfs-mount.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vfs-mount.c b/src/vfs-mount.c index f5a6286c..b9136895 100644 --- a/src/vfs-mount.c +++ b/src/vfs-mount.c @@ -116,6 +116,7 @@ vfs_start (gpgme_ctx_t ctx, int synchronous, +#if 0 /* XXXX. This is the asynchronous variant. */ static gpgme_error_t gpgme_op_vfs_transact_start (gpgme_ctx_t ctx, @@ -130,6 +131,7 @@ gpgme_op_vfs_transact_start (gpgme_ctx_t ctx, return vfs_start (ctx, 0, command, data_cb, data_cb_value, inq_cb, inq_cb_value, status_cb, status_cb_value); } +#endif /* XXXX. This is the synchronous variant. */ |