merge with 3.8.3a
authorJim Meyering <jim@meyering.net>
Wed, 6 Oct 1993 00:24:55 +0000 (00:24 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 6 Oct 1993 00:24:55 +0000 (00:24 +0000)
17 files changed:
src/chgrp.c
src/chmod.c
src/chown.c
src/cp.c
src/dd.c
src/df.c
src/du.c
src/install.c
src/ln.c
src/ls.c
src/mkdir.c
src/mkfifo.c
src/mknod.c
src/mv.c
src/rm.c
src/rmdir.c
src/touch.c

index f9118cdbd993af97202f0220174e4501cb91efc0..6a6737a03c8ef33b7dbc34b5f4084cb0487b407a 100644 (file)
@@ -75,7 +75,7 @@ static char *groupname;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -129,7 +129,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index 19c8cd8cd014c6a595a8e21582027b3972dbed9a..eb3316c0ee8f616db292b3bfb3a070b48c8caba5 100644 (file)
@@ -61,7 +61,7 @@ static int changes_only;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -144,7 +144,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index 37346aec955b6ff3ae2607a7e5252deb329ec3e3..6c967813718dc14497c96cd922d0884340d1a8fe 100644 (file)
@@ -85,7 +85,7 @@ static char *groupname;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -141,7 +141,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index f6dd934e2852a6faca158072e49d8d35315454ff..f0a5ce529e0a2a02a897d840b4f91dbe939f9eca 100644 (file)
--- a/src/cp.c
+++ b/src/cp.c
@@ -122,7 +122,7 @@ static uid_t myeuid;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_opts[] =
@@ -262,7 +262,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
@@ -748,9 +748,10 @@ copy (src_path, dst_path, new_dst, device, ancestors)
 #ifdef S_ISLNK
   if (S_ISLNK (src_type))
     {
-      char link_val[PATH_MAX + 1];
+      char *link_val;
       int link_size;
 
+      link_val = (char *) alloca (PATH_MAX + 2);
       link_size = readlink (src_path, link_val, sizeof (link_val) - 1);
       if (link_size < 0)
        {
index 172e665610d55eb3ad4d8161d3d6dabba689180a..fd10914880914652c45b1b3dccbe127938ec7803 100644 (file)
--- a/src/dd.c
+++ b/src/dd.c
@@ -311,7 +311,7 @@ static unsigned char const ebcdic_to_ascii[] =
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -342,7 +342,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index f3bea7152e87264c7d79ce7fb2d26b35f9cb7da4..35b1896aa5b61dc21fbaddea55a20414c6f9d125 100644 (file)
--- a/src/df.c
+++ b/src/df.c
@@ -112,7 +112,7 @@ static struct mount_entry *mount_list;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -180,7 +180,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index 4eb59c120b6ac986e306933d0f0924d6e8f6c1fa..4ea63f3366846bd209f4f45dbf2fe67eefad40cf 100644 (file)
--- a/src/du.c
+++ b/src/du.c
@@ -158,7 +158,7 @@ static int exit_status;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -260,7 +260,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index e6fc16276fe0128ae04664090f798d544813cee9..31a15dd1b19d0c9d60a5cb6d048c24320da6b095 100644 (file)
@@ -136,7 +136,7 @@ static int dir_arg;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -199,7 +199,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index e2ddda982ecdf0289b638c6f73c2f46a1e041a70..f8cf11e528f937c0977c60ed0f3219b3e921c9b7 100644 (file)
--- a/src/ln.c
+++ b/src/ln.c
@@ -89,7 +89,7 @@ static int hard_dir_link;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] = 
@@ -173,7 +173,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index b20b2117733b804ab48af568f41302eecae798f7..947e1b5b81bfede3c54b62328bf88a62c3ea83b2 100644 (file)
--- a/src/ls.c
+++ b/src/ls.c
@@ -361,7 +361,7 @@ static int exit_status;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -448,7 +448,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
@@ -1076,9 +1076,10 @@ get_link_name (filename, f)
      char *filename;
      struct file *f;
 {
-  char linkbuf[PATH_MAX + 1];
+  char *linkbuf;
   register int linksize;
 
+  linkbuf = (char *) alloca (PATH_MAX + 2);
   /* Some automounters give incorrect st_size for mount points.
      I can't think of a good workaround for it, though.  */
   linksize = readlink (filename, linkbuf, sizeof (linkbuf) - 1);
index f03f91f36a962d37c7a3ff9f785f010f0cae49ab..f5d89b7f3af3c0c90e2d3aeff41d1d6f5757cb22 100644 (file)
@@ -48,7 +48,7 @@ static int path_mode;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
@@ -94,7 +94,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index ce8a7924cd4ef914eed3f1c1728b8b2a01097af3..4b16d12543109510d5bf18c085cc450cb265d57c 100644 (file)
@@ -39,7 +39,7 @@ char *program_name;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
@@ -83,7 +83,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index e4e3ad2f76b7160b405fe85f54add938a1178aed..74efa86b2e456b45d0538d00ae1576a440a3fbd4 100644 (file)
@@ -44,7 +44,7 @@ char *program_name;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
@@ -84,7 +84,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index 220e14fda03c4b95fc10bf9a6a73d672f9680232..5029c7a7687db1e8968a9c288fc843c1b5ecfbd8 100644 (file)
--- a/src/mv.c
+++ b/src/mv.c
@@ -91,7 +91,7 @@ static uid_t myeuid;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -164,7 +164,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index 3f331e437bf0c54e36c28110c87ffa423d893dd0..2bd8db4ced952054f4c16d5ae54e7cb659fbcc7a 100644 (file)
--- a/src/rm.c
+++ b/src/rm.c
@@ -80,7 +80,7 @@ static int stdin_tty;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_opts[] =
@@ -140,7 +140,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index 6c1341ec25ce8cff22007cfa5f0aee4e5f4803a4..7c497b4b92d4b7d896593555e466b194c9797962 100644 (file)
@@ -43,7 +43,7 @@ static int empty_paths;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
@@ -82,7 +82,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }
 
index ae5b82c12612d80ad77ccc4f0eaf76fc29423db5..152a27e844ce68cba93b23df348602138ced1f2e 100644 (file)
@@ -95,7 +95,7 @@ static struct stat ref_stats;
 /* If non-zero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard error.  */
+/* If non-zero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
@@ -195,7 +195,7 @@ main (argc, argv)
 
   if (show_version)
     {
-      fprintf (stderr, "%s\n", version_string);
+      printf ("%s\n", version_string);
       exit (0);
     }