]> git.pld-linux.org Git - packages/klibc.git/commitdiff
- obsolete.
authorPaweł Sikora <pluto@pld-linux.org>
Mon, 13 Jun 2005 16:11:26 +0000 (16:11 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    klibc-dirent.patch -> 1.5

klibc-dirent.patch [deleted file]

diff --git a/klibc-dirent.patch b/klibc-dirent.patch
deleted file mode 100644 (file)
index 452e23c..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
---- klibc-0.193/kinit/do_mounts.c.orig 2004-12-12 21:12:27.000000000 +0100
-+++ klibc-0.193/kinit/do_mounts.c      2004-12-12 21:13:41.211035224 +0100
-@@ -1,6 +1,7 @@
- #include <ctype.h>
- #include <errno.h>
- #include <fcntl.h>
-+#include <sys/dirent.h>
- #include <sys/mount.h>
- #include <sys/stat.h>
- #include <stdio.h>
-@@ -162,8 +163,8 @@
-       if (!p)
-               return -1;
--      for (s = p; s < p + size; s += ((struct linux_dirent64 *)s)->d_reclen) {
--              struct linux_dirent64 *d = (struct linux_dirent64 *)s;
-+      for (s = p; s < p + size; s += ((struct dirent *)s)->d_reclen) {
-+              struct dirent *d = (struct dirent *)s;
-               if (strlen(d->d_name) + 2 > rest)
-                       continue;
-               switch (d->d_type) {
---- klibc-0.193/include/sys/dirent.h.orig      2004-06-08 07:32:48.000000000 +0200
-+++ klibc-0.193/include/sys/dirent.h   2004-12-12 21:42:06.398807280 +0100
-@@ -18,4 +18,27 @@
- __extern int getdents(unsigned int, struct dirent *, unsigned int);
-+/* File types for `d_type'.  */
-+enum
-+  {
-+    DT_UNKNOWN = 0,
-+# define DT_UNKNOWN   DT_UNKNOWN
-+    DT_FIFO = 1,
-+# define DT_FIFO      DT_FIFO
-+    DT_CHR = 2,
-+# define DT_CHR               DT_CHR
-+    DT_DIR = 4,
-+# define DT_DIR               DT_DIR
-+    DT_BLK = 6,
-+# define DT_BLK               DT_BLK
-+    DT_REG = 8,
-+# define DT_REG               DT_REG
-+    DT_LNK = 10,
-+# define DT_LNK               DT_LNK
-+    DT_SOCK = 12,
-+# define DT_SOCK      DT_SOCK
-+    DT_WHT = 14
-+# define DT_WHT               DT_WHT
-+  };
-+
- #endif /* _SYS_DIRENT_H */
This page took 0.079015 seconds and 4 git commands to generate.