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
This commit is contained in:

committed by
Jeffrey Stedfast

parent
58b5a7c733
commit
d8c7287326
@ -1,3 +1,8 @@
|
||||
2002-06-26 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
* camel-gpg-context.c (gpg_ctx_parse_status): Check for NODATA
|
||||
too.
|
||||
|
||||
2002-06-25 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
* providers/local/camel-local-provider.c: Remove the #include for
|
||||
|
@ -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) {
|
||||
|
@ -91,8 +91,11 @@ CamelType camel_multipart_signed_get_type (void);
|
||||
/* public methods */
|
||||
CamelMultipartSigned *camel_multipart_signed_new (void);
|
||||
|
||||
int camel_multipart_signed_sign (CamelMultipartSigned *mps, CamelCipherContext *context, CamelMimePart *content, const char *uiserid, CamelCipherHash hash, CamelException *ex);
|
||||
CamelCipherValidity *camel_multipart_signed_verify (CamelMultipartSigned *mps, CamelCipherContext *context, CamelException *ex);
|
||||
int camel_multipart_signed_sign (CamelMultipartSigned *mps, CamelCipherContext *context,
|
||||
CamelMimePart *content, const char *uiserid,
|
||||
CamelCipherHash hash, CamelException *ex);
|
||||
CamelCipherValidity *camel_multipart_signed_verify (CamelMultipartSigned *mps, CamelCipherContext *context,
|
||||
CamelException *ex);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
Reference in New Issue
Block a user