aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gpgme/ChangeLog4
-rw-r--r--gpgme/engine-gpgsm.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog
index e7de915f..dd78d7b2 100644
--- a/gpgme/ChangeLog
+++ b/gpgme/ChangeLog
@@ -1,3 +1,7 @@
+2001-11-26 Marcus Brinkmann <[email protected]>
+
+ * engine-gpgsm.c (_gpgme_gpgsm_op_sign): Fix stupid typo.
+
2001-11-24 Marcus Brinkmann <[email protected]>
* engine-gpgsm.c (gpgsm_status_handler): Don't break if bsearch fails.
diff --git a/gpgme/engine-gpgsm.c b/gpgme/engine-gpgsm.c
index a41ead5c..50ea5580 100644
--- a/gpgme/engine-gpgsm.c
+++ b/gpgme/engine-gpgsm.c
@@ -401,7 +401,7 @@ _gpgme_gpgsm_op_sign (GpgsmObject gpgsm, GpgmeData in, GpgmeData out,
return mk_error (Invalid_Value);
gpgsm->command = xtrystrdup (mode == GPGME_SIG_MODE_DETACH
- ? "VERIFY --detach" : "VERIFY");
+ ? "SIGN --detach" : "SIGN");
if (!gpgsm->command)
return mk_error (Out_Of_Core);