diff options
author | Marcus Brinkmann <[email protected]> | 2003-09-14 00:30:53 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2003-09-14 00:30:53 +0000 |
commit | f8867f27074b9371e5be8376360d75e97c2bbdd2 (patch) | |
tree | 7c6114486bff2460cf0f0f19d5133d882854e2d4 /tests/gpg/t-edit.c | |
parent | 2003-09-14 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-f8867f27074b9371e5be8376360d75e97c2bbdd2.tar.gz gpgme-f8867f27074b9371e5be8376360d75e97c2bbdd2.zip |
2003-09-14 Marcus Brinkmann <[email protected]>
* gpg/t-import.c (main): Likewise.
* gpg/t-keylist-sig.c (main): Likewise.
* gpg/t-keylist.c (main): Likewise.
* gpg/t-sign.c (main): Likewise.
* gpg/t-signers.c (main): Likewise.
* gpg/t-trustlist.c (main): Likewise.
* gpgsm/t-support.h: Include <stdlib.h> and <locale.h>.
(init_gpgme): New function.
* gpg/t-support.h: Likewise.
* gpgsm/t-verify.c (main): Call init_gpgme.
* gpgsm/t-decrypt.c (main): Likewise.
* gpgsm/t-encrypt.c (main): Likewise.
* gpgsm/t-export.c (main): Likewise.
* gpgsm/t-genkey.c (main): Likewise.
* gpgsm/t-import.c (main): Likewise.
* gpgsm/t-keylist.c (main): Likewise.
* gpgsm/t-sign.c (main): Likewise.
* gpg/t-verify.c (main): Call init_gpgme.
* gpg/t-decrypt-verify.c (main): Likewise.
* gpg/t-decrypt.c (main): Likewise.
* gpg/t-edit.c (main): Likewise.
* gpg/t-encrypt-sign.c (main): Likewise.
* gpg/t-encrypt-sym.c (main): Likewise.
* gpg/t-encrypt.c (main): Likewise.
* gpg/t-eventloop.c (main): Likewise.
* gpg/t-export.c (main): Likewise.
* gpg/t-genkey.c (main): Likewise.
Diffstat (limited to 'tests/gpg/t-edit.c')
-rw-r--r-- | tests/gpg/t-edit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gpg/t-edit.c b/tests/gpg/t-edit.c index d2d2e1b8..cefcbc41 100644 --- a/tests/gpg/t-edit.c +++ b/tests/gpg/t-edit.c @@ -113,6 +113,8 @@ main (int argc, char **argv) const char *pattern = "Alpha"; char *agent_info; + init_gpgme (GPGME_PROTOCOL_OpenPGP); + err = gpgme_new (&ctx); fail_if_err (err); err = gpgme_data_new (&out); @@ -141,5 +143,3 @@ main (int argc, char **argv) return 0; } - - |