Unverified Commit 9b0b0b39 authored by Salvatore Sanfilippo's avatar Salvatore Sanfilippo Committed by GitHub
Browse files

Merge pull request #3649 from Alkorin/fixTypo

Fix typo (unsupproted => unsupported) in error message
parents 74fdfc37 a2868321
...@@ -2611,7 +2611,7 @@ int listenToPort(int port, int *fds, int *count) { ...@@ -2611,7 +2611,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) {
...@@ -2623,7 +2623,7 @@ int listenToPort(int port, int *fds, int *count) { ...@@ -2623,7 +2623,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