[finsh]修复使用finsh_set_prompt重定向了msh提示符的名称后,路径功能没有的问题

This commit is contained in:
Meco Man 2022-06-29 23:18:14 -04:00 committed by guo
parent c651f9e6c7
commit 584d06bd27
1 changed files with 4 additions and 2 deletions

View File

@ -101,9 +101,11 @@ const char *finsh_get_prompt(void)
if (finsh_prompt_custom)
{
strncpy(finsh_prompt, finsh_prompt_custom, sizeof(finsh_prompt) - 1);
return finsh_prompt;
}
strcpy(finsh_prompt, _MSH_PROMPT);
else
{
strcpy(finsh_prompt, _MSH_PROMPT);
}
#if defined(DFS_USING_POSIX) && defined(DFS_USING_WORKDIR)
/* get current working directory */