mirror of
https://github.com/redis/redis.git
synced 2026-03-23 03:03:20 -04:00
Correct "unsupported" typo.
This commit is contained in:
parent
0c12ebf6e7
commit
fd97fbbd11
1 changed files with 2 additions and 2 deletions
|
|
@ -1928,7 +1928,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) {
|
||||
|
|
@ -1940,7 +1940,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…
Reference in a new issue