mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 00:28:26 -05:00
RESP3: fix DEBUG DIGEST-VALUE with new API.
This commit is contained in:
parent
62b2642c51
commit
c3bf646ef3
@ -517,7 +517,7 @@ NULL
|
|||||||
sdsfree(d);
|
sdsfree(d);
|
||||||
} else if (!strcasecmp(c->argv[1]->ptr,"digest-value") && c->argc >= 2) {
|
} else if (!strcasecmp(c->argv[1]->ptr,"digest-value") && c->argc >= 2) {
|
||||||
/* DEBUG DIGEST-VALUE key key key ... key. */
|
/* DEBUG DIGEST-VALUE key key key ... key. */
|
||||||
addReplyMultiBulkLen(c,c->argc-2);
|
addReplyArrayLen(c,c->argc-2);
|
||||||
for (int j = 2; j < c->argc; j++) {
|
for (int j = 2; j < c->argc; j++) {
|
||||||
unsigned char digest[20];
|
unsigned char digest[20];
|
||||||
memset(digest,0,20); /* Start with a clean result */
|
memset(digest,0,20); /* Start with a clean result */
|
||||||
|
Loading…
Reference in New Issue
Block a user