diff options
author | David Shaw <[email protected]> | 2006-01-01 18:12:57 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2006-01-01 18:12:57 +0000 |
commit | 1315171b0740f2375a4a6491733c9f3d696481cb (patch) | |
tree | 4b629d369a2631286e638cd6e9e4e1c626acae53 /g10/mainproc.c | |
parent | * sign.c (write_signature_packets): Lost a digest_algo line. (diff) | |
download | gnupg-1315171b0740f2375a4a6491733c9f3d696481cb.tar.gz gnupg-1315171b0740f2375a4a6491733c9f3d696481cb.zip |
* mainproc.c (check_sig_and_print), keyserver.c
(keyserver_import_pka), card-util.c (fetch_url): Always require a
scheme:// for keyserver URLs except when used as part of the
--keyserver command for backwards compatibility.
Diffstat (limited to 'g10/mainproc.c')
-rw-r--r-- | g10/mainproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/mainproc.c b/g10/mainproc.c index 8e512ecb5..7b92d8426 100644 --- a/g10/mainproc.c +++ b/g10/mainproc.c @@ -1529,7 +1529,7 @@ check_sig_and_print( CTX c, KBNODE node ) int res; struct keyserver_spec *spec; - spec = parse_keyserver_uri (uri, 0, NULL, 0); + spec = parse_keyserver_uri (uri, 1, NULL, 0); if (spec) { glo_ctrl.in_auto_key_retrieve++; |