Skip to content

Commit f6b51c6

Browse files
author
Ivan Zhakov
committed
Follow-up to r1860045: Fix condition.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1860050 13f79535-47bb-0310-9956-ffa450edef68
1 parent afba3d6 commit f6b51c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

file_io/win32/filestat.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ APR_DECLARE(apr_status_t) apr_file_attrs_set(const char *fname,
830830
}
831831

832832
/* Don't do anything if we are not going to change attributes. */
833-
if (new_flags == new_flags) {
833+
if (new_flags == old_flags) {
834834
return APR_SUCCESS;
835835
}
836836

0 commit comments

Comments
 (0)