mirror of
https://github.com/fluencelabs/redis
synced 2025-04-03 16:21:03 +00:00
Fix for issue #306, thanks to tchajed (on github) for the pull request. The original patch was reworked a bit.
This commit is contained in:
parent
4eb3b3e970
commit
a5bd08487f
@ -68,7 +68,7 @@ static struct config {
|
|||||||
char *auth;
|
char *auth;
|
||||||
int raw_output; /* output mode per command */
|
int raw_output; /* output mode per command */
|
||||||
sds mb_delim;
|
sds mb_delim;
|
||||||
char prompt[32];
|
char prompt[128];
|
||||||
char *eval;
|
char *eval;
|
||||||
} config;
|
} config;
|
||||||
|
|
||||||
@ -91,12 +91,19 @@ static long long mstime(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void cliRefreshPrompt(void) {
|
static void cliRefreshPrompt(void) {
|
||||||
if (config.dbnum == 0)
|
int len;
|
||||||
snprintf(config.prompt,sizeof(config.prompt),"redis %s:%d> ",
|
|
||||||
config.hostip, config.hostport);
|
if (config.hostsocket != NULL)
|
||||||
|
len = snprintf(config.prompt,sizeof(config.prompt),"redis %s",
|
||||||
|
config.hostsocket);
|
||||||
else
|
else
|
||||||
snprintf(config.prompt,sizeof(config.prompt),"redis %s:%d[%d]> ",
|
len = snprintf(config.prompt,sizeof(config.prompt),"redis %s:%d",
|
||||||
config.hostip, config.hostport, config.dbnum);
|
config.hostip, config.hostport);
|
||||||
|
/* Add [dbnum] if needed */
|
||||||
|
if (config.dbnum != 0)
|
||||||
|
len += snprintf(config.prompt+len,sizeof(config.prompt)-len,"[%d]",
|
||||||
|
config.dbnum);
|
||||||
|
snprintf(config.prompt+len,sizeof(config.prompt)-len,"> ");
|
||||||
}
|
}
|
||||||
|
|
||||||
/*------------------------------------------------------------------------------
|
/*------------------------------------------------------------------------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user