summaryrefslogtreecommitdiff
path: root/package/util-linux-ng/patches/patch-misc-utils_whereis_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-11-20 20:23:01 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2009-11-20 20:23:01 +0100
commitb465429a7e4a1f336947ec59ef5f660db85022f0 (patch)
tree45ed682ea3d7164cb70c4a2f19becf38cd957315 /package/util-linux-ng/patches/patch-misc-utils_whereis_c
parent96bc4e2dbfe9ea192ffd0762093cc38c80f789c1 (diff)
fix more uclibc bulk build errors and add sfdisk/parted
- add sfdisk and parted for nfsroot installations to cfdisk - fix more uclibc bulk build errors
Diffstat (limited to 'package/util-linux-ng/patches/patch-misc-utils_whereis_c')
-rw-r--r--package/util-linux-ng/patches/patch-misc-utils_whereis_c19
1 files changed, 0 insertions, 19 deletions
diff --git a/package/util-linux-ng/patches/patch-misc-utils_whereis_c b/package/util-linux-ng/patches/patch-misc-utils_whereis_c
deleted file mode 100644
index 6e6edcee5..000000000
--- a/package/util-linux-ng/patches/patch-misc-utils_whereis_c
+++ /dev/null
@@ -1,19 +0,0 @@
---- util-linux-ng-2.15.orig/misc-utils/whereis.c 2009-03-25 13:19:08.000000000 +0100
-+++ util-linux-ng-2.15/misc-utils/whereis.c 2009-06-22 22:51:39.000000000 +0200
-@@ -325,14 +325,14 @@ findin(char *dir, char *cp) {
- char dirbuf[1024];
- struct stat statbuf;
-
-- dd = index(dir, '*');
-+ dd = strchr(dir, '*');
- if (!dd)
- goto noglob;
-
- l = strlen(dir);
- if (l < sizeof(dirbuf)) { /* refuse excessively long names */
- strcpy (dirbuf, dir);
-- d = index(dirbuf, '*');
-+ d = strchr(dirbuf, '*');
- *d = 0;
- dirp = opendir(dirbuf);
- if (dirp == NULL)