From 8430a797270968176ad7a764c035a14b97514880 Mon Sep 17 00:00:00 2001 From: Richard Hart Date: Mon, 13 Mar 2017 22:17:41 -0400 Subject: [PATCH] Fixed log message typo in listenToPort. --- src/server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server.c b/src/server.c index 0494a4e75..30fd5c269 100644 --- a/src/server.c +++ b/src/server.c @@ -1676,7 +1676,7 @@ int listenToPort(int port, int *fds, int *count) { (*count)++; } else if (errno == EAFNOSUPPORT) { unsupported++; - serverLog(LL_WARNING,"Not listening to IPv6: unsupproted"); + serverLog(LL_WARNING,"Not listening to IPv6: unsupported"); } if (*count == 1 || unsupported) { @@ -1688,7 +1688,7 @@ int listenToPort(int port, int *fds, int *count) { (*count)++; } else if (errno == EAFNOSUPPORT) { unsupported++; - serverLog(LL_WARNING,"Not listening to IPv4: unsupproted"); + serverLog(LL_WARNING,"Not listening to IPv4: unsupported"); } } /* Exit the loop if we were able to bind * on IPv4 and IPv6,