diff options
author | Marcus Brinkmann <[email protected]> | 2004-02-23 20:31:35 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2004-02-23 20:31:35 +0000 |
commit | 5620ac56bf57cb2f42a78d6da236acf446b9b881 (patch) | |
tree | 76f01b91ce13d05acc331f9c3360f9f550f2ee7b /tools/gpgconf.h | |
parent | 2004-02-23 Marcus Brinkmann <[email protected]> (diff) | |
download | gnupg-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.h | 14 |
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; |