1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-07 23:27:48 +02:00

* gpgkeys_ldap.c (include_subkeys): Default "include-subkeys" to off,

since GnuPG now defaults it to on.
This commit is contained in:
David Shaw 2002-06-10 21:34:15 +00:00
parent 6ae955f451
commit f1c38eea2a
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-06-10 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_ldap.c (include_subkeys): Default "include-subkeys" to
off, since GnuPG now defaults it to on.
2002-06-06 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_hkp.c (parse_hkp_index): Type tweaks.

View File

@ -40,7 +40,7 @@
#define SEARCH 2
#define MAX_LINE 80
int verbose=0,include_disabled=0,include_revoked=0,include_subkeys=1;
int verbose=0,include_disabled=0,include_revoked=0,include_subkeys=0;
char *basekeyspacedn=NULL;
char host[80];
FILE *input=NULL,*output=NULL,*console=NULL;