diff options
author | Werner Koch <[email protected]> | 2011-11-28 17:36:21 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2011-11-30 16:34:49 +0000 |
commit | 9dc89de7a840c4a210e64b402094235a72e1c921 (patch) | |
tree | 038a4088ad1028dc02301e8559264484799620fc | |
parent | Re-indented dns-cert.c (diff) | |
download | gnupg-9dc89de7a840c4a210e64b402094235a72e1c921.tar.gz gnupg-9dc89de7a840c4a210e64b402094235a72e1c921.zip |
Actually increase buffer size of t-dns-cert.c.
-rw-r--r-- | common/t-dns-cert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/t-dns-cert.c b/common/t-dns-cert.c index a2b14f2c1..f3e8892a7 100644 --- a/common/t-dns-cert.c +++ b/common/t-dns-cert.c @@ -55,7 +55,7 @@ main (int argc, char **argv) printf ("CERT lookup on `%s'\n", name); - rc = get_dns_cert (name, 16384, &iobuf, &fpr, &fpr_len, &url); + rc = get_dns_cert (name, 65536, &iobuf, &fpr, &fpr_len, &url); if (rc == -1) fputs ("lookup result: error\n", stdout); else if (!rc) |