nfs-utils: replace legacy index() function by strchr()
authorFrederik Pasch <fpasch@googlemail.com>
Sun, 24 Jul 2011 21:51:44 +0000 (23:51 +0200)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 24 Jul 2011 21:51:44 +0000 (23:51 +0200)
Closes #3961

Signed-off-by: Frederik Pasch <fpasch@googlemail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
CHANGES
package/nfs-utils/nfs-utils-1.2.3-susv3-legacy.patch [new file with mode: 0644]

diff --git a/CHANGES b/CHANGES
index 7f8cb82dae36eb155e7ad7ad6837e3571019be25..8396dce9a6f9b8334d9d6cf80202217aacbbfd2e 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -33,6 +33,7 @@
        #3595: patch to add libroxml
        #3565: libnss: Add new package
        #3907: 2011.05 - Qt 4.7.3 not building on ARM
+       #3961: Nfs-utils: Remove SUSv3-function index
        #3985: "help" target's defconfig list needs sort
 
 2011.05, Released May 27th, 2011:
diff --git a/package/nfs-utils/nfs-utils-1.2.3-susv3-legacy.patch b/package/nfs-utils/nfs-utils-1.2.3-susv3-legacy.patch
new file mode 100644 (file)
index 0000000..3504e2d
--- /dev/null
@@ -0,0 +1,54 @@
+Use the strchr() function instead of the legacy index() function.
+
+Signed-off-by: Frederik Pasch <fpasch@googlemail.com>
+--- 1/utils/mountd/fsloc.c
++++ 2/utils/mountd/fsloc.c
+@@ -126,7 +126,7 @@
+       struct servers *rv=NULL;
+       xlog(L_NOTICE, "method_list(%s)\n", data);
+-      for (ptr--, listsize=1; ptr; ptr=index(ptr, ':'), listsize++)
++      for (ptr--, listsize=1; ptr; ptr=strchr(ptr, ':'), listsize++)
+               ptr++;
+       list = malloc(listsize * sizeof(char *));
+       copy = strdup(data);
+--- 1/support/nfs/nfs_mntent.c
++++ 2/support/nfs/nfs_mntent.c
+@@ -9,7 +9,7 @@
+  */
+ #include <stdio.h>
+-#include <string.h>           /* for index */
++#include <string.h>           /* for strchr */
+ #include <ctype.h>            /* for isdigit */
+ #include <sys/stat.h>         /* for umask */
+@@ -163,7 +163,7 @@
+                       return NULL;
+               mfp->mntent_lineno++;
+-              s = index (buf, '\n');
++              s = strchr (buf, '\n');
+               if (s == NULL) {
+                       /* Missing final newline?  Otherwise extremely */
+                       /* long line - assume file was corrupted */
+@@ -171,7 +171,7 @@
+                               fprintf(stderr, _("[mntent]: warning: no final "
+                                       "newline at the end of %s\n"),
+                                       mfp->mntent_file);
+-                              s = index (buf, 0);
++                              s = strchr (buf, 0);
+                       } else {
+                               mfp->mntent_errs = 1;
+                               goto err;
+--- 1/utils/mount/error.c
++++ 2/utils/mount/error.c
+@@ -62,7 +62,7 @@
+       char *tmp;
+       if (estr) {
+-              if ((ptr = index(estr, ':')))
++              if ((ptr = strchr(estr, ':')))
+                       estr = ++ptr;
+               tmp = &errbuf[spos];