mirror of
https://github.com/reactos/reactos.git
synced 2025-02-20 15:35:04 +00:00
Don't output "file not found" messages in recursive searches
svn path=/trunk/; revision=28078
This commit is contained in:
parent
604b0f6c03
commit
e6e690ba9a
1 changed files with 2 additions and 1 deletions
|
@ -875,7 +875,8 @@ PrintSummary(LPTSTR szPath,
|
|||
/* Here we check if we didn't find anything */
|
||||
if (!(ulFiles + ulDirs))
|
||||
{
|
||||
error_file_not_found();
|
||||
if (!lpFlags->bRecursive || (TotalSummary && lpFlags->bRecursive))
|
||||
error_file_not_found();
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue