Return success on empty command
This commit is contained in:
parent
d77356837a
commit
a60586eaad
1 changed files with 1 additions and 1 deletions
2
client.c
2
client.c
|
@ -2568,7 +2568,7 @@ process_line(char *line, int *quit)
|
||||||
if (!*p) {
|
if (!*p) {
|
||||||
fflush(stderr);
|
fflush(stderr);
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
return ret;
|
return 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!strncmp(p, "offline", 7)) {
|
if (!strncmp(p, "offline", 7)) {
|
||||||
|
|
Loading…
Reference in a new issue