diff options
author | Werner Koch <[email protected]> | 2006-10-02 11:54:35 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2006-10-02 11:54:35 +0000 |
commit | 4b48bcacc9a242365e85ca788c4c966d8aeb1c10 (patch) | |
tree | 21e803ec571bbe4d9288e014a16ccafe0ac45056 /g10/options.h | |
parent | 2006-10-02 Marcus Brinkmann <[email protected]> (diff) | |
download | gnupg-4b48bcacc9a242365e85ca788c4c966d8aeb1c10.tar.gz gnupg-4b48bcacc9a242365e85ca788c4c966d8aeb1c10.zip |
Fix for bug 537
Diffstat (limited to 'g10/options.h')
-rw-r--r-- | g10/options.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/g10/options.h b/g10/options.h index 75c2745fc..282130085 100644 --- a/g10/options.h +++ b/g10/options.h @@ -114,7 +114,7 @@ struct int pgp2_workarounds; int shm_coprocess; const char *set_filename; - STRLIST comments; + strlist_t comments; int throw_keyid; const char *photo_viewer; int s2k_mode; @@ -134,7 +134,7 @@ struct char *port; char *path; char *opaque; - STRLIST options; + strlist_t options; struct { unsigned int direct_uri:1; @@ -146,7 +146,7 @@ struct unsigned int options; unsigned int import_options; unsigned int export_options; - STRLIST other; + strlist_t other; } keyserver_options; int exec_disable; int exec_path_set; @@ -166,11 +166,11 @@ struct int interactive; struct notation *sig_notations; struct notation *cert_notations; - STRLIST sig_policy_url; - STRLIST cert_policy_url; - STRLIST sig_keyserver_url; - STRLIST cert_subpackets; - STRLIST sig_subpackets; + strlist_t sig_policy_url; + strlist_t cert_policy_url; + strlist_t sig_keyserver_url; + strlist_t cert_subpackets; + strlist_t sig_subpackets; int allow_non_selfsigned_uid; int allow_freeform_uid; int no_literal; |