Commit 297e77c6 authored by antirez's avatar antirez
Browse files

Now it is possible to use quoted strings in the redis.conf file accordingly to...

Now it is possible to use quoted strings in the redis.conf file accordingly to the sdssplitargs() function capabilities.
parent 0a546fc0
......@@ -55,7 +55,7 @@ void loadServerConfig(char *filename) {
}
/* Split into arguments */
argv = sdssplitlen(line,sdslen(line)," ",1,&argc);
argv = sdssplitargs(line,&argc);
sdstolower(argv[0]);
/* Execute config directives */
......
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