Fix warning in redis.c for sentinel config load

This commit is contained in:
mrb
2012-09-27 13:04:37 +02:00
committed by antirez
parent fcc8bf9974
commit f1057534e7
+1 -1
View File
@@ -2559,7 +2559,7 @@ int main(int argc, char **argv) {
loadServerConfig(configfile,options);
sdsfree(options);
} else {
redisLog(REDIS_WARNING,"Warning: no config file specified, using the default config. In order to specify a config file use 'redis-server /path/to/redis.conf'");
redisLog(REDIS_WARNING, "Warning: no config file specified, using the default config. In order to specify a config file use %s /path/to/%s.conf", argv[0], server.sentinel_mode ? "sentinel" : "redis");
}
if (server.daemonize) daemonize();
initServer();