diff options
author | Werner Koch <[email protected]> | 2015-02-26 19:00:17 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-02-26 19:00:17 +0000 |
commit | c43391f96537c304a8fddd2939a8380d8dd13319 (patch) | |
tree | 828db723ddeebc41bf32b35dcfd78f13e2f62b23 | |
parent | po,intl: Update to 0.19.3. (diff) | |
download | gnupg-c43391f96537c304a8fddd2939a8380d8dd13319.tar.gz gnupg-c43391f96537c304a8fddd2939a8380d8dd13319.zip |
Fix for building without DNS support.
* util/cert.c (get_cert) [!USE_DNS_CERT]: Add want_ipgp.
-rw-r--r-- | util/cert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/cert.c b/util/cert.c index 7c5e9cfd9..7e437aace 100644 --- a/util/cert.c +++ b/util/cert.c @@ -190,8 +190,8 @@ get_cert (const char *name, int want_ipgp, size_t max_size,IOBUF *iobuf, #else /* !USE_DNS_CERT */ int -get_cert(const char *name,size_t max_size,IOBUF *iobuf, - unsigned char **fpr,size_t *fpr_len,char **url) +get_cert (const char *name, int want_ipgp, size_t max_size,IOBUF *iobuf, + unsigned char **fpr, size_t *fpr_len, char **url) { return -1; } |