https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191540
--- Comment #2 from d...@gmx.com --- To reproduce: Create and mount a FAT32 partition: # dd if=/dev/zero of=space bs=1m count=4 # mdconfig -a -u 7 -t vnode -f space # newfs_msdos -F 32 /dev/md7 # mkdir fat # mount -t msdosfs /dev/md7 fat Attempt to create files with fancy names on the partition: # cd fat # tar -vxf ../files.zip The output is: x 1’.txt: Can't create '1’.txt' x 2–.txt: Can't create '2–.txt' Other file access can also be attempted, eg.: (The "–" is a Unicode "en dash".) # stat – The output is: stat: –: stat: Invalid argument Clean up (optional): # cd .. # umount fat # rmdir fat # mdconfig -d -u 7 # rm space -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"