The -newerXB option was being interpreted the same as the -newerXm option
as a check for F_TIME2_B was missing. Fix this. PR: bin/138245 Submitted by: "David E. Cross" <crossd cs.rpi.edu> MFC after: 1 month
This commit is contained in:
parent
80445d3f53
commit
8310a1a27a
@ -1164,6 +1164,8 @@ c_newer(OPTION *option, char ***argvp)
|
||||
new->t_data = sb.st_ctime;
|
||||
else if (option->flags & F_TIME2_A)
|
||||
new->t_data = sb.st_atime;
|
||||
else if (option->flags & F_TIME2_B)
|
||||
new->t_data = sb.st_birthtime;
|
||||
else
|
||||
new->t_data = sb.st_mtime;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user