diff options
author | Yuri Chornoivan <yurchor@ukr.net> | 2017-02-20 22:19:50 +0100 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2017-02-21 19:11:46 +0100 |
commit | 24cf0606b43038c7ce5e9c6ccb921895619c04f0 (patch) | |
tree | 4888dfeb4ed52052e71158b948499b12b4b04ec9 /dirmngr/dns-stuff.c | |
parent | dirmngr: Add special treatment for the standard hkps pool to ntbtls. (diff) | |
download | gnupg2-24cf0606b43038c7ce5e9c6ccb921895619c04f0.tar.xz gnupg2-24cf0606b43038c7ce5e9c6ccb921895619c04f0.zip |
Clean up word replication.
--
This fixes extra word repetitions (like "the the" or "is is") in the
code and docs.
Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
Diffstat (limited to 'dirmngr/dns-stuff.c')
-rw-r--r-- | dirmngr/dns-stuff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dirmngr/dns-stuff.c b/dirmngr/dns-stuff.c index 074e0128f..d72d1c7c5 100644 --- a/dirmngr/dns-stuff.c +++ b/dirmngr/dns-stuff.c @@ -881,7 +881,7 @@ resolve_name_standard (const char *name, unsigned short port, else *portstr = 0; - /* We can't use the the AI_IDN flag because that does the conversion + /* We can't use the AI_IDN flag because that does the conversion using the current locale. However, GnuPG always used UTF-8. To support IDN we would need to make use of the libidn API. */ ret = getaddrinfo (name, *portstr? portstr : NULL, &hints, &aibuf); @@ -1680,7 +1680,7 @@ get_dns_cert_standard (const char *name, int want_certtype, found, the malloced data is returned at (R_KEY, R_KEYLEN) and the other return parameters are set to NULL/0. If an IPGP CERT record was found the fingerprint is stored as an allocated block at - R_FPR and its length at R_FPRLEN; an URL is is allocated as a + R_FPR and its length at R_FPRLEN; an URL is allocated as a string and returned at R_URL. If WANT_CERTTYPE is 0 this function returns the first CERT found with a supported type; it is expected that only one CERT record is used. If WANT_CERTTYPE is one of the |