2001-12-13 Marcus Brinkmann <marcus@g10code.de>
* engine-gpgsm.c (_gpgme_gpgsm_op_encrypt): Do not add `armor' option to `ENCRYPT'. * engine-gpgsm.c (gpgsm_set_recipients): Free LINE when returning successfully.
This commit is contained in:
parent
4a55249ee6
commit
77a72c0d5e
@ -1,3 +1,10 @@
|
||||
2001-12-13 Marcus Brinkmann <marcus@g10code.de>
|
||||
|
||||
* engine-gpgsm.c (_gpgme_gpgsm_op_encrypt): Do not add `armor'
|
||||
option to `ENCRYPT'.
|
||||
* engine-gpgsm.c (gpgsm_set_recipients): Free LINE when returning
|
||||
successfully.
|
||||
|
||||
2001-12-13 Marcus Brinkmann <marcus@g10code.de>
|
||||
|
||||
* engine-gpgsm.c (close_notify_handler): New function.
|
||||
|
@ -335,6 +335,7 @@ gpgsm_set_recipients (ASSUAN_CONTEXT ctx, GpgmeRecipients recp)
|
||||
return err;
|
||||
}
|
||||
}
|
||||
xfree (line);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -347,7 +348,7 @@ _gpgme_gpgsm_op_encrypt (GpgsmObject gpgsm, GpgmeRecipients recp,
|
||||
if (!gpgsm)
|
||||
return mk_error (Invalid_Value);
|
||||
|
||||
gpgsm->command = xtrystrdup (use_armor ? "ENCRYPT armor" : "ENCRYPT");
|
||||
gpgsm->command = xtrystrdup ("ENCRYPT");
|
||||
if (!gpgsm->command)
|
||||
return mk_error (Out_Of_Core);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user