From a28683217073e8670bba79ff1f38d93fb3e90d65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20SO=C3=8BTE?= Date: Wed, 30 Nov 2016 15:26:59 +0100 Subject: [PATCH] Fix typo (unsupproted => unsupported) in error message --- src/server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server.c b/src/server.c index 30951668..f9f08cd8 100644 --- a/src/server.c +++ b/src/server.c @@ -1658,7 +1658,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) { @@ -1670,7 +1670,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,