aboutsummaryrefslogtreecommitdiffstats
path: root/g10/options.h
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2005-11-18 04:25:07 +0000
committerDavid Shaw <[email protected]>2005-11-18 04:25:07 +0000
commiteac8dbc9b7428d93413ac08aabccdc7b20fb1e2f (patch)
tree8c1a355aac69f0758ae7ce7fbb2c137ed98cd9fe /g10/options.h
parent* armor.c (parse_header_line): A fussy bit of 2440: header lines are (diff)
downloadgnupg-eac8dbc9b7428d93413ac08aabccdc7b20fb1e2f.tar.gz
gnupg-eac8dbc9b7428d93413ac08aabccdc7b20fb1e2f.zip
* keyedit.c (keyedit_menu, menu_clean): Simplify clean options to just
"clean", and add "minimize". * import.c (parse_import_options): Make help text match the export versions of the options. * options.h, export.c (parse_export_options, do_export_stream): Reduce clean options to two: clean and minimize. * trustdb.h, trustdb.c (clean_one_uid): New function that joins uid and sig cleaning into one for a simple API outside trustdb.
Diffstat (limited to '')
-rw-r--r--g10/options.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/g10/options.h b/g10/options.h
index 20544b9a6..ade26dcc4 100644
--- a/g10/options.h
+++ b/g10/options.h
@@ -271,10 +271,9 @@ struct {
#define EXPORT_LOCAL_SIGS (1<<0)
#define EXPORT_ATTRIBUTES (1<<1)
#define EXPORT_SENSITIVE_REVKEYS (1<<2)
-#define EXPORT_MINIMAL (1<<3)
-#define EXPORT_CLEAN_SIGS (1<<4)
-#define EXPORT_CLEAN_UIDS (1<<5)
-#define EXPORT_RESET_SUBKEY_PASSWD (1<<6)
+#define EXPORT_RESET_SUBKEY_PASSWD (1<<3)
+#define EXPORT_MINIMAL (1<<4)
+#define EXPORT_CLEAN (1<<5)
#define LIST_SHOW_PHOTOS (1<<0)
#define LIST_SHOW_POLICY_URLS (1<<1)