Rich Felker
da88b16a22
fix handling of d_name in struct dirent
...
basically there are 3 choices for how to implement this variable-size
string member:
1. C99 flexible array member: breaks using dirent.h with pre-C99 compiler.
2. old way: length-1 string: generates array bounds warnings in caller.
3. new way: length-NAME_MAX string. no problems, simplifies all code.
of course the usable part in the pointer returned by readdir might be
shorter than NAME_MAX+1 bytes, but that is allowed by the standard and
doesn't hurt anything.
2011-06-06 18:04:28 -04:00
..
2011-02-12 00:22:29 -05:00
2011-03-18 21:53:30 -04:00
2011-02-12 00:22:29 -05:00
2011-04-06 15:44:39 -04:00
2011-05-08 00:03:00 -04:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-04-12 13:04:17 -04:00
2011-02-12 00:22:29 -05:00
2011-02-14 18:41:25 -05:00
2011-06-06 18:04:28 -04:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-04-05 11:16:49 -04:00
2011-02-12 00:22:29 -05:00
2011-04-14 22:06:30 -04:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-04-05 15:45:24 -04:00
2011-02-12 00:22:29 -05:00
2011-04-13 09:03:22 -04:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-02-14 21:59:38 -05:00
2011-02-14 18:41:25 -05:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-03-29 13:01:25 -04:00
2011-02-14 20:45:37 -05:00
2011-02-12 00:22:29 -05:00
2011-02-14 18:41:25 -05:00
2011-04-13 15:24:26 -04:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-05-30 11:31:07 -04:00
2011-04-20 20:55:13 -04:00
2011-03-28 20:43:51 -04:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-03-03 18:32:26 -05:00
2011-02-14 18:45:58 -05:00
2011-02-12 00:22:29 -05:00
2011-05-05 17:44:06 -04:00
2011-05-28 18:36:30 -04:00
2011-04-27 23:41:48 -04:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-04-11 10:48:52 -04:00
2011-04-05 12:25:31 -04:00
2011-04-21 14:27:28 -04:00
2011-04-26 12:28:41 -04:00
2011-02-14 18:41:25 -05:00
2011-02-12 00:22:29 -05:00
2011-04-05 15:40:36 -04:00
2011-04-13 16:13:49 -04:00
2011-02-12 00:22:29 -05:00
2011-02-12 00:22:29 -05:00
2011-02-15 15:25:31 -05:00
2011-02-18 22:03:03 -05:00
2011-02-12 00:22:29 -05:00
2011-04-27 16:06:33 -04:00
2011-02-12 00:22:29 -05:00
2011-03-18 21:52:26 -04:00
2011-04-12 12:03:33 -04:00
2011-05-30 13:32:40 -04:00
2011-02-14 19:33:11 -05:00
2011-02-19 12:44:36 -05:00