[Issue 283] incorrect std.c.linux.linux.dirent definition / listdir does not decend into subdirs on linux
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Tue Oct 2 13:42:13 PDT 2007
http://d.puremagic.com/issues/show_bug.cgi?id=283
bugzilla at digitalmars.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WONTFIX
------- Comment #3 from bugzilla at digitalmars.com 2007-10-02 15:42 -------
On Redhat 9, dirent is defined in /usr/include/bits/dirent.h as:
struct dirent
{
#ifndef __USE_FILE_OFFSET54
__ino_t d_ino;
__off_t d_off;
#else
__ino64_t d_ino;
__off64_t d_off;
#endif
unsigned short int d_reclen;
unsigned char d_type;
char d_name[256];
};
which matches what is in std.c.linux.linux, so I really don't see what can be
done about this.
--
More information about the Digitalmars-d-bugs
mailing list