summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2016-06-16 12:59:05 +0200
committerGitHub <noreply@github.com>2016-06-16 12:59:05 +0200
commit8272ceadaa161989ead1406eecaa17ddd57dbcb7 (patch)
tree320d2dbf9ab52d8a189eee62b2a4883245bc0e6f
parent64b834b8b2b75460f7a0cd9cd60dc3bd09bc0f16 (diff)
parent8d9d8d16e4216207f4c58d4c41bb33f8eea399ff (diff)
downloadredis-8272ceadaa161989ead1406eecaa17ddd57dbcb7.tar.gz
Merge pull request #3255 from oranagra/error_string
CLIENT error message was out of date
-rw-r--r--src/networking.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/networking.c b/src/networking.c
index d50d2c852..242022a03 100644
--- a/src/networking.c
+++ b/src/networking.c
@@ -1605,7 +1605,7 @@ void clientCommand(client *c) {
pauseClients(duration);
addReply(c,shared.ok);
} else {
- addReplyError(c, "Syntax error, try CLIENT (LIST | KILL ip:port | GETNAME | SETNAME connection-name)");
+ addReplyError(c, "Syntax error, try CLIENT (LIST | KILL | GETNAME | SETNAME | PAUSE | REPLY)");
}
}