diff options
author | Marcus Brinkmann <[email protected]> | 2012-02-08 14:26:17 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2012-02-08 14:26:17 +0000 |
commit | dae3073aaa8b7feb1c844fdaf711f79141b9cc65 (patch) | |
tree | 5e298888803b5e9f6ba2656759bb76a6c27c6d5e /tests/run-support.h | |
parent | Link the thread test to pthread. (diff) | |
download | gpgme-dae3073aaa8b7feb1c844fdaf711f79141b9cc65.tar.gz gpgme-dae3073aaa8b7feb1c844fdaf711f79141b9cc65.zip |
Use gpgme interface for error handling to avoid linking with gpg-error.
* tests/t-data.c, tests/run-export.c, tests/run-keylist.c,
tests/run-support.h, tests/run-verify.c, tests/gpg/t-decrypt-verify.c,
tests/gpg/t-edit.c, tests/gpg/t-eventloop.c, tests/gpg/t-keylist-sig.c,
tests/gpg/t-keylist.c, tests/gpg/t-support.h, tests/gpg/t-trustlist.c,
tests/gpg/t-verify.c, tests/gpg/t-wait.c, tests/gpgsm/cms-decrypt.c,
tests/gpgsm/cms-keylist.c, tests/gpgsm/t-keylist.c,
tests/gpgsm/t-support.h, tests/gpgsm/t-verify.c,
tests/opassuan/t-command.c: Use gpgme interface for gpg-error functions.
Diffstat (limited to 'tests/run-support.h')
-rw-r--r-- | tests/run-support.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-support.h b/tests/run-support.h index d7f0923b..db7b7d5a 100644 --- a/tests/run-support.h +++ b/tests/run-support.h @@ -142,7 +142,7 @@ print_import_result (gpgme_import_result_t r) for (st=r->imports; st; st = st->next) { printf (" fpr: %s err: %d (%s) status:", nonnull (st->fpr), - st->result, gpg_strerror (st->result)); + st->result, gpgme_strerror (st->result)); if (st->status & GPGME_IMPORT_NEW) fputs (" new", stdout); if (st->status & GPGME_IMPORT_UID) |