fix(shell): forbid record password in taos_history file
This commit is contained in:
parent
1cc0df89ab
commit
83f7c7c2d0
|
@ -142,7 +142,7 @@ int32_t shellRunCommand(char *command, bool recordHistory) {
|
|||
}
|
||||
|
||||
// add help or help;
|
||||
if(strncasecmp(command, "help ", 5) == 0) {
|
||||
if(strncasecmp(command, "help;", 5) == 0) {
|
||||
showHelp();
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue