More verbose output when file not found.

This commit is contained in:
Uwe Bonnes 2002-07-24 19:00:25 +00:00 committed by Alexandre Julliard
parent b17ed7e048
commit 6b4d9e0932

View file

@ -166,7 +166,7 @@ char *p;
hff = FindFirstFile (param1, &fd);
if (hff == INVALID_HANDLE_VALUE) {
WCMD_output ("File Not Found\n");
WCMD_output ("%s :File Not Found\n",param1);
return;
}
if ((strchr(param1,'*') == NULL) && (strchr(param1,'?') == NULL)
@ -530,7 +530,7 @@ char flags[9] = {" "};
hff = FindFirstFile (param1, &fd);
if (hff == INVALID_HANDLE_VALUE) {
WCMD_output ("File Not Found\n");
WCMD_output ("%s: File Not Found\n",param1);
}
else {
do {