diff options
author | Werner Koch <[email protected]> | 2000-11-20 20:17:36 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2000-11-20 20:17:36 +0000 |
commit | f9a167c516c8bf5f9dfc076fa51eb60dc96c86fb (patch) | |
tree | 6247d32de5c7100587b7c01841fe3a877504e4a8 /tests/t-verify.c | |
parent | configuration changes (diff) | |
download | gpgme-f9a167c516c8bf5f9dfc076fa51eb60dc96c86fb.tar.gz gpgme-f9a167c516c8bf5f9dfc076fa51eb60dc96c86fb.zip |
Does some basic tasks.V0-1-0
Diffstat (limited to '')
-rw-r--r-- | tests/t-verify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/t-verify.c b/tests/t-verify.c index bc997236..ac9e3376 100644 --- a/tests/t-verify.c +++ b/tests/t-verify.c @@ -116,7 +116,7 @@ main (int argc, char **argv ) err = gpgme_op_verify (ctx, sig, text, &status ); print_sig_stat ( status ); fail_if_err (err); - if ( (nota=gpgme_op_get_notation (ctx)) ) + if ( (nota=gpgme_get_notation (ctx)) ) printf ("---Begin Notation---\n%s---End Notation---\n", nota ); puts ("checking a manipulated message:\n"); @@ -128,7 +128,7 @@ main (int argc, char **argv ) err = gpgme_op_verify (ctx, sig, text, &status ); print_sig_stat ( status ); fail_if_err (err); - if ( (nota=gpgme_op_get_notation (ctx)) ) + if ( (nota=gpgme_get_notation (ctx)) ) printf ("---Begin Notation---\n%s---End Notation---\n", nota ); gpgme_data_release (sig); |