diff options
author | David Shaw <[email protected]> | 2006-03-08 23:30:12 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2006-03-08 23:30:12 +0000 |
commit | 4fea8fdbbb79144cef5c9a34a0c3a4bb4a649bc1 (patch) | |
tree | a336f865b1f461ab1bb7d11752304930677b24b0 /g10/options.h | |
parent | * options.h, mainproc.c (check_sig_and_print), gpg.c (main): (diff) | |
download | gnupg-4fea8fdbbb79144cef5c9a34a0c3a4bb4a649bc1.tar.gz gnupg-4fea8fdbbb79144cef5c9a34a0c3a4bb4a649bc1.zip |
* options.h, sign.c (mk_notation_policy_etc), gpg.c (add_notation_data):
Use it here for the various notation commands.
* packet.h, main.h, keygen.c (keygen_add_notations), build-packet.c
(string_to_notation, sig_to_notation) (free_notation): New "one stop
shopping" functions to handle notations and start removing some code
duplication.
Diffstat (limited to '')
-rw-r--r-- | g10/options.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/options.h b/g10/options.h index bcef4550b..6ae586eef 100644 --- a/g10/options.h +++ b/g10/options.h @@ -163,8 +163,8 @@ struct char *temp_dir; int no_encrypt_to; int interactive; - STRLIST sig_notation_data; - STRLIST cert_notation_data; + struct notation *sig_notations; + struct notation *cert_notations; STRLIST sig_policy_url; STRLIST cert_policy_url; STRLIST sig_keyserver_url; |