1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

Fix explanation of commit e175152ef7.

--
This commit is contained in:
Werner Koch 2017-02-01 08:18:44 +01:00
parent 8ddc9268f6
commit f518196ca6
No known key found for this signature in database
GPG key ID: E3FDFF218E45B72B
2 changed files with 6 additions and 4 deletions

View file

@ -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++;