]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
typo
authorAlan T. DeKok <aland@freeradius.org>
Fri, 28 Jul 2017 02:28:03 +0000 (22:28 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 28 Jul 2017 13:35:06 +0000 (09:35 -0400)
src/lib/util/inet.c

index 00a8186aa38299e890b466338ca1864081d61c30..847f5baba497b509235db5a5adc0be608af15a09 100644 (file)
@@ -452,7 +452,7 @@ int fr_inet_pton4(fr_ipaddr_t *out, char const *value, ssize_t inlen, bool resol
 
                } else if (!resolve) {
                        if (inet_pton(AF_INET, value, &out->addr.v4.s_addr) <= 0) {
-                               fr_strerror_printf("Failed to parse IPv4 addreess string \"%s\"", value);
+                               fr_strerror_printf("Failed to parse IPv4 address string \"%s\"", value);
                                return -1;
                        }
                } else if (fr_inet_hton(out, AF_INET, value, fallback) < 0) return -1;