1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-29 13:49:30 +03:00

s3-net: allow to exit "net rpc sh" with "q" as well.

Guenther
This commit is contained in:
Günther Deschner
2009-09-02 21:09:13 +02:00
parent a0b1968167
commit 5268783e5c

View File

@ -119,7 +119,9 @@ static bool net_sh_process(struct net_context *c,
}
}
if (strequal(argv[0], "exit") || strequal(argv[0], "quit")) {
if (strequal(argv[0], "exit") ||
strequal(argv[0], "quit") ||
strequal(argv[0], "q")) {
return false;
}