summaryrefslogtreecommitdiffstats
path: root/dirmngr
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2017-02-01 08:18:44 +0100
committerWerner Koch <wk@gnupg.org>2017-02-01 08:18:44 +0100
commitf518196ca6202ae97a1e8494afe25e5fbb0e9d47 (patch)
treedf8634efe80137bbe2b3b07c1e1c848229f6df8d /dirmngr
parentscd: Fix regression tracking the connection count. (diff)
downloadgnupg2-f518196ca6202ae97a1e8494afe25e5fbb0e9d47.tar.xz
gnupg2-f518196ca6202ae97a1e8494afe25e5fbb0e9d47.zip
Fix explanation of commit e175152ef7515921635bf1e00383e812668d13fc.
--
Diffstat (limited to 'dirmngr')
-rw-r--r--dirmngr/dns-stuff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dirmngr/dns-stuff.c b/dirmngr/dns-stuff.c
index ad19fc2ce..615c9e6c9 100644
--- a/dirmngr/dns-stuff.c
+++ b/dirmngr/dns-stuff.c
@@ -1227,7 +1227,7 @@ is_ip_address (const char *name)
if (*s == '.')
{
if (s[1] == '.')
- return 0; /* No: Douple dot. */
+ return 0; /* No: Double dot. */
if (atoi (s+1) > 255)
return 0; /* No: Ipv4 byte value too large. */
ndots++;