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:
Magnus Olsen
2005-05-08 20:15:54 +00:00
parent 54f6a09bb2
commit 67627091db
4 changed files with 3 additions and 5 deletions
-2
View File
@@ -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"
+1 -1
View File
@@ -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;
}
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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;
}