Skip to content

Commit

Permalink
ignore name_hash comparation (because Windows ignores it too)
Browse files Browse the repository at this point in the history
  • Loading branch information
lqs committed Aug 14, 2013
1 parent 765f279 commit e09d94a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions exfat.c
Original file line number Diff line number Diff line change
Expand Up @@ -3898,8 +3898,7 @@ INT32 exfat_find_dir_entry(struct super_block *sb, CHAIN_T *p_dir, UNI_NAME_T *p
} else if (entry_type == TYPE_STREAM) {
if (is_feasible_entry) {
strm_ep = (STRM_DENTRY_T *) ep;
if ((p_uniname->name_hash == GET16_A(strm_ep->name_hash)) &&
(p_uniname->name_len == strm_ep->name_len)) {
if (p_uniname->name_len == strm_ep->name_len) {
order = 1;
} else {
is_feasible_entry = FALSE;
Expand Down

0 comments on commit e09d94a

Please sign in to comment.