Bug locating path for linux_mkdir

View: New views
1 Messages — Rating Filter:   Alert me  

Bug locating path for linux_mkdir

by Alexander Best :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

i'm not able to reproduce this problem anymore under 9-CURRENT. i'm using the
following test code running emulators/linux_dist-gentoo-stage3 (for chroot and
for compilation with cc) and linux_base-f10:

#include <sys/stat.h>
#include <errno.h>
#include <stdio.h>

main() {
    mkdir("/tmp/.test", 511 );
    printf("first errno: %d\n", errno);
    mkdir("/tmp/.test/test2/", 511 );
    printf("second errno: %d\n", errno);
}

the result is:

first errno: 0
second errno: 0

was a problem report submitted back then?

alex
_______________________________________________
freebsd-emulation@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-emulation
To unsubscribe, send any mail to "freebsd-emulation-unsubscribe@..."