summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/server.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/server.c b/src/server.c
index 5845a5485..3f64aaec9 100644
--- a/src/server.c
+++ b/src/server.c
@@ -3498,7 +3498,10 @@ int processCommand(client *c) {
c->cmd->proc != unsubscribeCommand &&
c->cmd->proc != psubscribeCommand &&
c->cmd->proc != punsubscribeCommand) {
- addReplyError(c,"only (P)SUBSCRIBE / (P)UNSUBSCRIBE / PING / QUIT allowed in this context");
+ addReplyErrorFormat(c,
+ "'%s' command submitted, but only (P)SUBSCRIBE / "
+ "(P)UNSUBSCRIBE / PING / QUIT allowed in this context",
+ c->cmd->name);
return C_OK;
}