aboutsummaryrefslogtreecommitdiffstats
path: root/tools/gpgconf.h
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2004-02-23 20:31:35 +0000
committerMarcus Brinkmann <[email protected]>2004-02-23 20:31:35 +0000
commit5620ac56bf57cb2f42a78d6da236acf446b9b881 (patch)
tree76f01b91ce13d05acc331f9c3360f9f550f2ee7b /tools/gpgconf.h
parent2004-02-23 Marcus Brinkmann <[email protected]> (diff)
downloadgnupg-5620ac56bf57cb2f42a78d6da236acf446b9b881.tar.gz
gnupg-5620ac56bf57cb2f42a78d6da236acf446b9b881.zip
2004-02-23 Marcus Brinkmann <[email protected]>
* gpgconf.h (struct): Add member runtime. * gpgconf.c: Add new option oRuntime. (main): Same here.
Diffstat (limited to 'tools/gpgconf.h')
-rw-r--r--tools/gpgconf.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/tools/gpgconf.h b/tools/gpgconf.h
index 6ccc0d1dd..138380b6d 100644
--- a/tools/gpgconf.h
+++ b/tools/gpgconf.h
@@ -23,12 +23,14 @@
#include "../common/util.h"
-/* We keep all global options in the structure OPT. */
-struct {
- int verbose; /* Verbosity level. */
- int quiet; /* Be extra quiet. */
- int dry_run; /* Don't change any persistent data. */
- char *outfile; /* Name of output file. */
+/* We keep all global options in the structure OPT. */
+struct
+{
+ int verbose; /* Verbosity level. */
+ int quiet; /* Be extra quiet. */
+ int dry_run; /* Don't change any persistent data. */
+ int runtime; /* Make changes active at runtime. */
+ char *outfile; /* Name of output file. */
int component; /* The active component. */
} opt;