diff options
author | Marcus Brinkmann <[email protected]> | 2009-11-03 19:15:35 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2009-11-03 19:15:35 +0000 |
commit | 97932b102af882a37c2613b0f50dc39369c48723 (patch) | |
tree | bc4aaaea8d1fa96cc126f02a3789033aa92d5dc6 /src/vfs-mount.c | |
parent | 2009-11-02 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-97932b102af882a37c2613b0f50dc39369c48723.tar.gz gpgme-97932b102af882a37c2613b0f50dc39369c48723.zip |
2009-11-03 Marcus Brinkmann <[email protected]>
* Makefile.am (main_sources): Change g13.c to vfs-mount.c. Add
vfs-create.c
* vfs-create.c: New file.
* g13.c: Renamed to ...
* vfs-mount.c: ... this new file.
* gpgme.h.in (gpgme_op_vfs_create): New prototype.
* gpgme.def, libgpgme.vers: Add gpgme_op_vfs_create.
* gpgme-tool.c (gt_vfs_create, cmd_vfs_create): New functions.
(register_commands): Add VFS_CREATE and CREAET.
Diffstat (limited to '')
-rw-r--r-- | src/vfs-mount.c (renamed from src/g13.c) | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/g13.c b/src/vfs-mount.c index a2ab675e..3c0b6f24 100644 --- a/src/g13.c +++ b/src/vfs-mount.c @@ -1,4 +1,4 @@ -/* g13.c - g13 support in GPGME +/* vfs-mount.c - vfs mount support in GPGME Copyright (C) 2009 g10 Code GmbH This file is part of GPGME. @@ -198,7 +198,8 @@ _gpgme_op_vfs_mount (gpgme_ctx_t ctx, const char *container_file, gpgme_error_t gpgme_op_vfs_mount (gpgme_ctx_t ctx, const char *container_file, - const char *mount_dir, int flags, gpgme_error_t *op_err) + const char *mount_dir, unsigned int flags, + gpgme_error_t *op_err) { TRACE_BEG4 (DEBUG_CTX, "gpgme_op_vfs_mount", ctx, "container=%s, mount_dir=%s, flags=0x%x, op_err=%p", |