diff --git a/include/build_timestamp.h b/include/build_timestamp.h index b57ffcf33..bfc037991 100644 --- a/include/build_timestamp.h +++ b/include/build_timestamp.h @@ -1,4 +1,4 @@ /*auto-generated*/ -#define UPDATED_STR "Jul 1, 2021 7:42:29am" -#define GIT_COMMIT_HASH "8785b48" +#define UPDATED_STR "Jul 1, 2021 6:53:32pm" +#define GIT_COMMIT_HASH "daceabd" #define COPYRIGHT_END_YEAR "2021" diff --git a/src/shell/shell_cmds.cpp b/src/shell/shell_cmds.cpp index a691b0065..57fbc6a46 100644 --- a/src/shell/shell_cmds.cpp +++ b/src/shell/shell_cmds.cpp @@ -3486,6 +3486,11 @@ void DOS_Shell::CMD_TRUENAME(char * args) { if (hostname.size()) WriteOut("%s\n", hostname.c_str()); } } else +#if defined(WIN32) && !(defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR)) + if (Network_IsNetworkResource(fullname)) + WriteOut("%s\r\n", name); + else +#endif WriteOut("%c:\\%s\r\n", drive+'A', fullname); } else