Hi! I noticed that the _S_IFDIR portion of the change wasn’t accepted — was there a particular reason why the other form is preferred (_S_IFDIR)? Thanks! -Ngie cvs diff -u lib/libc/gen/t_glob.c Index: lib/libc/gen/t_glob.c =================================================================== RCS file: /cvsroot/src/tests/lib/libc/gen/t_glob.c,v retrieving revision 1.4 diff -u -r1.4 t_glob.c --- lib/libc/gen/t_glob.c 13 Jan 2017 21:30:41 -0000 1.4 +++ lib/libc/gen/t_glob.c 14 Jan 2017 01:02:02 -0000 @@ -146,7 +146,7 @@ memset(st, 0, sizeof(*st)); if (strcmp(buf, "a") == 0 || strcmp(buf, "a/b") == 0) { - st->st_mode |= _S_IFDIR; + st->st_mode |= S_IFDIR; return 0; } |