1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

2004-02-23 Marcus Brinkmann <marcus@g10code.de>

* gpgconf.h (struct): Add member runtime.
	* gpgconf.c: Add new option oRuntime.
	(main): Same here.
This commit is contained in:
Marcus Brinkmann 2004-02-23 20:31:35 +00:00
parent c38f609206
commit 5620ac56bf
3 changed files with 22 additions and 9 deletions

View file

@ -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;