aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-gpg-context.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-06-27 02:49:05 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-06-27 02:49:05 +0800
commitd8c728732654b00e0427044d425f9c7a9a08e3f2 (patch)
treed5f79b1d69ba25f64977ed1c1b28395050d187a9 /camel/camel-gpg-context.c
parent58b5a7c7332d3c9e3ef0ff269f184a27fba3e454 (diff)
downloadgsoc2013-evolution-d8c728732654b00e0427044d425f9c7a9a08e3f2.tar
gsoc2013-evolution-d8c728732654b00e0427044d425f9c7a9a08e3f2.tar.gz
gsoc2013-evolution-d8c728732654b00e0427044d425f9c7a9a08e3f2.tar.bz2
gsoc2013-evolution-d8c728732654b00e0427044d425f9c7a9a08e3f2.tar.lz
gsoc2013-evolution-d8c728732654b00e0427044d425f9c7a9a08e3f2.tar.xz
gsoc2013-evolution-d8c728732654b00e0427044d425f9c7a9a08e3f2.tar.zst
gsoc2013-evolution-d8c728732654b00e0427044d425f9c7a9a08e3f2.zip
Check for NODATA too.
2002-06-26 Jeffrey Stedfast <fejj@ximian.com> * camel-gpg-context.c (gpg_ctx_parse_status): Check for NODATA too. svn path=/trunk/; revision=17295
Diffstat (limited to 'camel/camel-gpg-context.c')
-rw-r--r--camel/camel-gpg-context.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/camel/camel-gpg-context.c b/camel/camel-gpg-context.c
index 124182b955..1c7daaa72b 100644
--- a/camel/camel-gpg-context.c
+++ b/camel/camel-gpg-context.c
@@ -780,6 +780,11 @@ gpg_ctx_parse_status (struct _GpgCtx *gpg, CamelException *ex)
_("Unexpected response from GnuPG: %s"),
status + 11);
return -1;
+ } else if (!strncmp (status, "NODATA", 6)) {
+ /* this is an error */
+ camel_exception_set (ex, CAMEL_EXCEPTION_SYSTEM,
+ _("No data provided"));
+ return -1;
} else {
/* check to see if we are complete */
switch (gpg->mode) {