Commit a2868321 authored by Thomas SOËTE's avatar Thomas SOËTE
Browse files

Fix typo (unsupproted => unsupported) in error message

parent 3c4fe59e
...@@ -1658,7 +1658,7 @@ int listenToPort(int port, int *fds, int *count) { ...@@ -1658,7 +1658,7 @@ int listenToPort(int port, int *fds, int *count) {
(*count)++; (*count)++;
} else if (errno == EAFNOSUPPORT) { } else if (errno == EAFNOSUPPORT) {
unsupported++; unsupported++;
serverLog(LL_WARNING,"Not listening to IPv6: unsupproted"); serverLog(LL_WARNING,"Not listening to IPv6: unsupported");
} }
if (*count == 1 || unsupported) { if (*count == 1 || unsupported) {
...@@ -1670,7 +1670,7 @@ int listenToPort(int port, int *fds, int *count) { ...@@ -1670,7 +1670,7 @@ int listenToPort(int port, int *fds, int *count) {
(*count)++; (*count)++;
} else if (errno == EAFNOSUPPORT) { } else if (errno == EAFNOSUPPORT) {
unsupported++; 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, /* Exit the loop if we were able to bind * on IPv4 and IPv6,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment