fix(shell): forbid record password in taos_history file

This commit is contained in:
Alex Duan 2022-12-05 14:36:34 +08:00
parent 1cc0df89ab
commit 83f7c7c2d0
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ int32_t shellRunCommand(char *command, bool recordHistory) {
} }
// add help or help; // add help or help;
if(strncasecmp(command, "help ", 5) == 0) { if(strncasecmp(command, "help;", 5) == 0) {
showHelp(); showHelp();
return 0; return 0;
} }