Commit 6b4d9e09 authored by Uwe Bonnes's avatar Uwe Bonnes Committed by Alexandre Julliard

More verbose output when file not found.

parent b17ed7e0
...@@ -166,7 +166,7 @@ char *p; ...@@ -166,7 +166,7 @@ char *p;
hff = FindFirstFile (param1, &fd); hff = FindFirstFile (param1, &fd);
if (hff == INVALID_HANDLE_VALUE) { if (hff == INVALID_HANDLE_VALUE) {
WCMD_output ("File Not Found\n"); WCMD_output ("%s :File Not Found\n",param1);
return; return;
} }
if ((strchr(param1,'*') == NULL) && (strchr(param1,'?') == NULL) if ((strchr(param1,'*') == NULL) && (strchr(param1,'?') == NULL)
...@@ -530,7 +530,7 @@ char flags[9] = {" "}; ...@@ -530,7 +530,7 @@ char flags[9] = {" "};
hff = FindFirstFile (param1, &fd); hff = FindFirstFile (param1, &fd);
if (hff == INVALID_HANDLE_VALUE) { if (hff == INVALID_HANDLE_VALUE) {
WCMD_output ("File Not Found\n"); WCMD_output ("%s: File Not Found\n",param1);
} }
else { else {
do { do {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment