mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
Reomve string STRING_CMD_INVALIDDRIVE in En.rc it was doublcate of STRING_FREE_ERROR1
thanks Usurp for finding it svn path=/trunk/; revision=15150
This commit is contained in:
@@ -561,8 +561,6 @@ STRING_ERROR_DRIVER_NOT_READY, "Drive not ready"
|
||||
|
||||
STRING_PATH_ERROR, "CMD: Not in environment '%s'\n"
|
||||
|
||||
|
||||
STRING_CMD_INVALIDDRIVE, "ERROR: invalid drive"
|
||||
STRING_CMD_SHELLINFO, "\nReactOS Command Line Interpreter"
|
||||
STRING_VERSION_RUNVER, " running on %s"
|
||||
STRING_COPY_FILE , " %d file(s) copied\n"
|
||||
|
||||
@@ -333,7 +333,7 @@ Execute (LPTSTR full, LPTSTR first, LPTSTR rest)
|
||||
working = SetCurrentDirectory(str);
|
||||
}
|
||||
|
||||
if (!working) ConErrResPuts (STRING_CMD_INVALIDDRIVE);
|
||||
if (!working) ConErrResPuts (STRING_FREE_ERROR1);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -84,7 +84,7 @@
|
||||
#define STRING_CMD_HELP6 613
|
||||
#define STRING_CMD_HELP7 614
|
||||
#define STRING_CMD_HELP8 615
|
||||
#define STRING_CMD_INVALIDDRIVE 617
|
||||
|
||||
#define STRING_CMD_SHELLINFO 624
|
||||
|
||||
#define STRING_COLOR_HELP1 625
|
||||
|
||||
@@ -39,7 +39,7 @@ INT cmd_start (LPTSTR first, LPTSTR rest)
|
||||
SetCurrentDirectory (szPath);
|
||||
GetCurrentDirectory (MAX_PATH, szPath);
|
||||
if (szPath[0] != (TCHAR)_totupper (*first))
|
||||
ConErrResPuts (STRING_CMD_INVALIDDRIVE);
|
||||
ConErrResPuts (STRING_FREE_ERROR1);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user