aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-gpg-context.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-10-17 11:01:36 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-10-17 11:01:36 +0800
commit0372b96a72e19185a1e2d370d92610b3bc3e9090 (patch)
tree076d656e3633ca1545064d7e2e389d698404b46e /camel/camel-gpg-context.h
parented4784f031bae4c963660ea5de1cc8161092f336 (diff)
downloadgsoc2013-evolution-0372b96a72e19185a1e2d370d92610b3bc3e9090.tar
gsoc2013-evolution-0372b96a72e19185a1e2d370d92610b3bc3e9090.tar.gz
gsoc2013-evolution-0372b96a72e19185a1e2d370d92610b3bc3e9090.tar.bz2
gsoc2013-evolution-0372b96a72e19185a1e2d370d92610b3bc3e9090.tar.lz
gsoc2013-evolution-0372b96a72e19185a1e2d370d92610b3bc3e9090.tar.xz
gsoc2013-evolution-0372b96a72e19185a1e2d370d92610b3bc3e9090.tar.zst
gsoc2013-evolution-0372b96a72e19185a1e2d370d92610b3bc3e9090.zip
No longer takes a path argument. (camel_gpg_context_fianlise): No need to
2002-10-16 Jeffrey Stedfast <fejj@ximian.com> * camel-gpg-context.c (camel_gpg_context_new): No longer takes a path argument. (camel_gpg_context_fianlise): No need to free ctx->path. (gpg_ctx_new): No longer takes a path argument either. (gpg_ctx_free): No need to free ctx->path, it's no longer used. (gpg_ctx_op_start): Don't stat the path anymore and change the first arg to execvp to "gpg" so that we use the shell's environment to find gpg. (gpg_sign): Updated. (gpg_verify): Updated. (gpg_encrypt): Updated. (gpg_decrypt): Updated. (gpg_ctx_get_argv): Removed some debug printfs. svn path=/trunk/; revision=18383
Diffstat (limited to 'camel/camel-gpg-context.h')
-rw-r--r--camel/camel-gpg-context.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/camel/camel-gpg-context.h b/camel/camel-gpg-context.h
index 80417fdbcf..6a2f56f304 100644
--- a/camel/camel-gpg-context.h
+++ b/camel/camel-gpg-context.h
@@ -42,8 +42,6 @@ typedef struct _CamelGpgContextClass CamelGpgContextClass;
struct _CamelGpgContext {
CamelCipherContext parent_object;
- char *path;
-
gboolean always_trust;
};
@@ -55,7 +53,7 @@ struct _CamelGpgContextClass {
CamelType camel_gpg_context_get_type (void);
-CamelCipherContext *camel_gpg_context_new (CamelSession *session, const char *path);
+CamelCipherContext *camel_gpg_context_new (CamelSession *session);
void camel_gpg_context_set_always_trust (CamelGpgContext *ctx, gboolean trust);