diff options
author | Werner Koch <[email protected]> | 2014-09-08 17:26:02 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2014-09-08 17:26:02 +0000 |
commit | 64329cce9a0f21cf941ff2c3f542a08c57cb5378 (patch) | |
tree | 2757f807c51b06645bff08cb9c85c72e49b151d9 /scd/app-openpgp.c | |
parent | gpg: Do not show "MD5" and triplicated "RSA" in --version. (diff) | |
parent | gpg: Fix memory leak in ECC encryption. (diff) | |
download | gnupg-64329cce9a0f21cf941ff2c3f542a08c57cb5378.tar.gz gnupg-64329cce9a0f21cf941ff2c3f542a08c57cb5378.zip |
Merge branch 'wk/test-gpgrt-estream'
Diffstat (limited to 'scd/app-openpgp.c')
-rw-r--r-- | scd/app-openpgp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scd/app-openpgp.c b/scd/app-openpgp.c index fff097adb..9b4ab2220 100644 --- a/scd/app-openpgp.c +++ b/scd/app-openpgp.c @@ -1448,9 +1448,8 @@ get_public_key (app_t app, int keyno) } hexkeyid = fpr + 24; - ret = estream_asprintf (&command, - "gpg --list-keys --with-colons --with-key-data '%s'", - fpr); + ret = gpgrt_asprintf + (&command, "gpg --list-keys --with-colons --with-key-data '%s'", fpr); if (ret < 0) { err = gpg_error_from_syserror (); |