https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=18704
Warner Losh <i...@freebsd.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Open |Closed Resolution|--- |FIXED --- Comment #7 from Warner Losh <i...@freebsd.org> --- So this bug has been fixed by other ways. The following works: #include <err.h> #include <glob.h> #include <stdio.h> #include <stdlib.h> int main(int argc, char **argv) { glob_t globbuf; if (glob("/secretdir/*",GLOB_ERR,0,&globbuf) == 0) errx(1, "FAILED"); printf("SUCCESS"); exit(0); } -- You are receiving this mail because: You are the assignee for the bug.