diff options
author | antirez <antirez@gmail.com> | 2016-01-07 14:35:07 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2016-01-07 14:35:10 +0100 |
commit | 08c7bba32a7195ce04bc132fa4e68573e598552d (patch) | |
tree | 27ae8ffa021234c8b8f0d1368a2b8b833f7539a7 /src/networking.c | |
parent | edd4d555df57dc84265fdfb4ef59a4678832f6da (diff) | |
download | redis-08c7bba32a7195ce04bc132fa4e68573e598552d.tar.gz |
Fix protected mode error message typo.
Diffstat (limited to 'src/networking.c')
-rw-r--r-- | src/networking.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/networking.c b/src/networking.c index dba9e7cfe..7e0fa5a6c 100644 --- a/src/networking.c +++ b/src/networking.c @@ -619,7 +619,7 @@ static void acceptCommonHandler(int fd, int flags, char *ip) { "-DENIED Redis is running in protected mode because protected " "mode is enabled, no bind address was specified, no " "authentication password is requested to clients. In this mode " - "connections are only accepted from the lookback interface. " + "connections are only accepted from the loopback interface. " "If you want to connect from external computers to Redis you " "may adopt one of the following solutions: " "1) Just disable protected mode sending the command " |