Skip to content

Commit

Permalink
fix reading a file-list from stdin
Browse files Browse the repository at this point in the history
  • Loading branch information
rhash committed Jul 17, 2020
1 parent df0c969 commit d10d941
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion find_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void file_search_add_file(file_search_data* data, tstr_t path, unsigned file_mod
}
if (IS_DASH_TSTR(path))
{
file_search_add_special_file(data, (FileIsRoot | FileIsStdin), NULL);
file_search_add_special_file(data, (file_mode | FileIsStdin), NULL);
return;
}

Expand Down

0 comments on commit d10d941

Please sign in to comment.