Merge pull request #1895 from mattrobenolt/patch-1

Fix spelling of "stand alone" in ascii art
This commit is contained in:
Salvatore Sanfilippo 2014-07-28 09:37:41 +02:00
commit d76c663dfe

View File

@ -3381,10 +3381,11 @@ void usage() {
void redisAsciiArt(void) {
#include "asciilogo.h"
char *buf = zmalloc(1024*16);
char *mode = "stand alone";
char *mode;
if (server.cluster_enabled) mode = "cluster";
else if (server.sentinel_mode) mode = "sentinel";
else mode = "standalone";
snprintf(buf,1024*16,ascii_logo,
REDIS_VERSION,