mirror of
https://github.com/fluencelabs/redis
synced 2025-03-17 16:10:50 +00:00
Fix typo (unsupproted => unsupported) in error message
This commit is contained in:
parent
3c4fe59e09
commit
a286832170
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user