diff options
Diffstat (limited to 'gpgme/encrypt-sign.c')
-rw-r--r-- | gpgme/encrypt-sign.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gpgme/encrypt-sign.c b/gpgme/encrypt-sign.c index cc55a146..9768756d 100644 --- a/gpgme/encrypt-sign.c +++ b/gpgme/encrypt-sign.c @@ -64,12 +64,12 @@ _gpgme_op_encrypt_sign_start (GpgmeCtx ctx, int synchronous, /* Check the supplied data */ if (!plain) { - err = mk_error (No_Data); + err = GPGME_No_Data; goto leave; } if (!cipher) { - err = mk_error (Invalid_Value); + err = GPGME_Invalid_Value; goto leave; } |