Commit 4fbd7a39 authored by antirez's avatar antirez
Browse files

Add command fingerprint comment for XSETID.

parent 2480db53
......@@ -1821,7 +1821,9 @@ NULL
}
}
/* Set the internal "last ID" of a stream. */
/* XSETID <stream> <groupname> <id>
*
* 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;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment