Date: Thu, 05 Nov 2009 01:54:20 +0100 (CET) From: Alexander Best <alexbestms@math.uni-muenster.de> To: <freebsd-emulation@freebsd.org> Subject: Bug locating path for linux_mkdir Message-ID: <permail-20091105005420f0889e8400000cd3-a_best01@message-id.uni-muenster.de>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?permail-20091105005420f0889e8400000cd3-a_best01>
