From f5494b186260edd794679be8e2173e5cc7cd6977 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 25 Oct 2018 13:08:48 +0200 Subject: [PATCH] Add command fingerprint comment for XSETID. --- src/t_stream.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/t_stream.c b/src/t_stream.c index 59eda1b8..e37b6582 100644 --- a/src/t_stream.c +++ b/src/t_stream.c @@ -1821,7 +1821,9 @@ NULL } } -/* Set the internal "last ID" of a stream. */ +/* XSETID + * + * Set the internal "last ID" of a stream. */ void xsetidCommand(client *c) { robj *o = lookupKeyWriteOrReply(c,c->argv[1],shared.nokeyerr); if (o == NULL || checkType(c,o,OBJ_STREAM)) return;