K 10 svn:author V 4 ache K 8 svn:date V 27 2013-08-15T04:27:10.541362Z K 7 svn:log V 298 MFC: r254091 According to POSIX \ in the fnmatch(3) pattern should escape any character including '\0', but our version replace escaped '\0' with '\\'. I.e. fnmatch("\\", "\\", 0) should not match while fnmatch("\\", "", 0) should (Linux and NetBSD does the same). Was vice versa. PR: 181129 END