diff options
author | Werner Koch <[email protected]> | 2010-03-22 12:46:05 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-03-22 12:46:05 +0000 |
commit | e64038608be28c14ed72b0372529762953de898f (patch) | |
tree | 3847da576d4f2e6c542ce6737179a11afcc1a487 /common/dns-cert.c | |
parent | Builds again for W32. (diff) | |
download | gnupg-e64038608be28c14ed72b0372529762953de898f.tar.gz gnupg-e64038608be28c14ed72b0372529762953de898f.zip |
More chnages to use estream. Add a way to replace the standard
descriptors.
Diffstat (limited to '')
-rw-r--r-- | common/dns-cert.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/dns-cert.c b/common/dns-cert.c index efdefaf16..80ba7d06d 100644 --- a/common/dns-cert.c +++ b/common/dns-cert.c @@ -279,6 +279,13 @@ get_dns_cert (const char *name, size_t max_size, IOBUF *iobuf, return ret; #endif /*!USE_ADNS*/ #else /* !USE_DNS_CERT */ + (void)name; + (void)max_size; + (void)iobuf; + (void)fpr; + (void)fpr_len; + (void)url; + return -1; #endif } |