(copy, make_path_private): Use strr?chr instead of r?index.
authorJim Meyering <jim@meyering.net>
Sat, 10 Dec 1994 05:41:52 +0000 (05:41 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 10 Dec 1994 05:41:52 +0000 (05:41 +0000)
src/cp.c

index a1962f72241b4d86283ec52c244d5784bf413a21..462ead205e752c142173fae0b8238f53808ae072 100644 (file)
--- a/src/cp.c
+++ b/src/cp.c
@@ -690,8 +690,8 @@ copy (src_path, dst_path, new_dst, device, ancestors)
   else if (flag_symbolic_link)
     {
       if (*src_path == '/'
-         || (!strncmp (dst_path, "./", 2) && index (dst_path + 2, '/') == 0)
-         || index (dst_path, '/') == 0)
+         || (!strncmp (dst_path, "./", 2) && strchr (dst_path + 2, '/') == 0)
+         || strchr (dst_path, '/') == 0)
        {
          if (symlink (src_path, dst_path))
            {
@@ -895,7 +895,7 @@ make_path_private (const_dirpath, src_offset, mode, verbose_fmt_string,
       slash = src;
       while (*slash == '/')
        slash++;
-      while ((slash = index (slash, '/')))
+      while ((slash = strchr (slash, '/')))
        {
          /* Add this directory to the list of directories whose modes need
             fixing later. */