diff options
author | Werner Koch <[email protected]> | 2014-11-28 08:44:19 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2014-11-28 08:44:19 +0000 |
commit | 7aee3579be6e24a1aa280e75615fc3a11ceef960 (patch) | |
tree | f8ae9f5c3cf5b30d7bfa6d31e37417d9c823996b /g10/options.h | |
parent | gpg-agent: Add restricted connection feature. (diff) | |
download | gnupg-7aee3579be6e24a1aa280e75615fc3a11ceef960.tar.gz gnupg-7aee3579be6e24a1aa280e75615fc3a11ceef960.zip |
Add option --no-autostart.
* g10/gpg.c: Add option --no-autostart.
* sm/gpgsm.c: Ditto.
* g10/options.h (opt): Add field autostart.
* sm/gpgsm.h (opt): Ditto.
* g10/call-agent.c (start_agent): Print note if agent was not
autostarted.
* sm/call-agent.c (start_agent): Ditto.
* g10/call-dirmngr.c (create_context): Likewise.
* sm/call-dirmngr.c (start_dirmngr_ext): Ditto.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | g10/options.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/g10/options.h b/g10/options.h index 6a94ff43a..7ec81af36 100644 --- a/g10/options.h +++ b/g10/options.h @@ -53,6 +53,7 @@ struct estream_t outfp; /* Hack, sometimes used in place of outfile. */ off_t max_output; int dry_run; + int autostart; int list_only; int textmode; int expert; |