Commit cdd10193 authored by antirez's avatar antirez
Browse files

RESP3: Use new deferred len API in config.c.

parent 470c2838
...@@ -1324,7 +1324,7 @@ badfmt: /* Bad format errors */ ...@@ -1324,7 +1324,7 @@ badfmt: /* Bad format errors */
void configGetCommand(client *c) { void configGetCommand(client *c) {
robj *o = c->argv[2]; robj *o = c->argv[2];
void *replylen = addDeferredMultiBulkLength(c); void *replylen = addReplyDeferredLen(c);
char *pattern = o->ptr; char *pattern = o->ptr;
char buf[128]; char buf[128];
int matches = 0; int matches = 0;
...@@ -1571,7 +1571,7 @@ void configGetCommand(client *c) { ...@@ -1571,7 +1571,7 @@ void configGetCommand(client *c) {
sdsfree(aux); sdsfree(aux);
matches++; matches++;
} }
setDeferredMultiBulkLength(c,replylen,matches*2); setDeferredMapLen(c,replylen,matches);
} }
/*----------------------------------------------------------------------------- /*-----------------------------------------------------------------------------
......
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