From: Alan T. DeKok Date: Fri, 28 Jul 2017 02:28:03 +0000 (-0400) Subject: typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fc9ee2e6de0426b64bd4594bb60fe7bc8d4e4a2;p=thirdparty%2Ffreeradius-server.git typo --- diff --git a/src/lib/util/inet.c b/src/lib/util/inet.c index 00a8186aa38..847f5baba49 100644 --- a/src/lib/util/inet.c +++ b/src/lib/util/inet.c @@ -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;