]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
s/non-zero/nonzero/g
authorJim Meyering <jim@meyering.net>
Mon, 27 Nov 1995 05:34:31 +0000 (05:34 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 27 Nov 1995 05:34:31 +0000 (05:34 +0000)
33 files changed:
src/chgrp.c
src/chmod.c
src/chown.c
src/cp.c
src/date.c
src/dd.c
src/df.c
src/du.c
src/env.c
src/id.c
src/install.c
src/ln.c
src/logname.c
src/ls.c
src/mkdir.c
src/mkfifo.c
src/mknod.c
src/mv.c
src/pathchk.c
src/printenv.c
src/rm.c
src/rmdir.c
src/seq.c
src/sleep.c
src/stty.c
src/su.c
src/tee.c
src/test.c
src/touch.c
src/tty.c
src/uname.c
src/who.c
src/whoami.c

index 0cc33c60de32d1c1bcfa677ff9efebd9218a11f3..8de7f39a26acac557d12348435c570a7ea45deec 100644 (file)
@@ -73,10 +73,10 @@ static int changes_only;
 /* The name of the group to which ownership of the files is being given. */
 static char *groupname;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
index eb7116b0d0cb7f3e89303b67ecfc48916e65cf96..cae5d7e65f52aa7a42a8c8c4997453bbff62f254 100644 (file)
@@ -57,10 +57,10 @@ static int verbose;
 /* If nonzero, describe only modes that change. */
 static int changes_only;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -94,7 +94,7 @@ describe_change (char *file, short unsigned int mode, int changed)
 }
 
 /* Change the mode of FILE according to the list of operations CHANGES.
-   If DEREF_SYMLINK is non-zero and FILE is a symbolic link, change the
+   If DEREF_SYMLINK is nonzero and FILE is a symbolic link, change the
    mode of the referenced file.  If DEREF_SYMLINK is zero, ignore symbolic
    links.  Return 0 if successful, 1 if errors occurred. */
 
index bb2ad6e9563e64eaa54bef346f4b2260822c3be1..f3bbf45b77633d3799615b634703abce22f1370d 100644 (file)
@@ -79,10 +79,10 @@ static char *username;
 /* The name of the group to which ownership of the files is being given. */
 static char *groupname;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
index 145fb02f60affcb3c091b052a4b058517c70ab1e..4607d9a920b6d882f25dbef5ba4663a46dd53182 100644 (file)
--- a/src/cp.c
+++ b/src/cp.c
@@ -130,10 +130,10 @@ static int umask_kill;
 /* This process's effective user ID.  */
 static uid_t myeuid;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_opts[] =
@@ -459,7 +459,7 @@ do_copy (int argc, char **argv)
 }
 \f
 /* Copy the file SRC_PATH to the file DST_PATH.  The files may be of
-   any type.  NEW_DST should be non-zero if the file DST_PATH cannot
+   any type.  NEW_DST should be nonzero if the file DST_PATH cannot
    exist because its parent directory was just created; NEW_DST should
    be zero if DST_PATH might already exist.  DEVICE is the device
    number of the parent directory, or 0 if the parent of this file is
@@ -1037,7 +1037,7 @@ re_protect (char *const_dst_path, int src_offset, struct dir_attr *attr_list)
 }
 \f
 /* Read the contents of the directory SRC_PATH_IN, and recursively
-   copy the contents to DST_PATH_IN.  NEW_DST is non-zero if
+   copy the contents to DST_PATH_IN.  NEW_DST is nonzero if
    DST_PATH_IN is a directory that was created previously in the
    recursion.   SRC_SB and ANCESTORS describe SRC_PATH_IN.
    Return 0 if successful, -1 if an error occurs. */
@@ -1188,13 +1188,13 @@ copy_reg (char *src_path, char *dst_path)
        {
          buf[n_read] = 1;      /* Sentinel to stop loop.  */
 
-         /* Find first non-zero *word*, or the word with the sentinel.  */
+         /* Find first nonzero *word*, or the word with the sentinel.  */
 
          ip = (int *) buf;
          while (*ip++ == 0)
            ;
 
-         /* Find the first non-zero *byte*, or the sentinel.  */
+         /* Find the first nonzero *byte*, or the sentinel.  */
 
          cp = (char *) (ip - 1);
          while (*cp++ == 0)
index 49ca9ef75f2e59bf5d285abeaa676cd93ecb317a..378b302627f716b1ca9be5dfbc28facf92492e4f 100644 (file)
@@ -50,13 +50,13 @@ static void usage ();
 /* The name this program was run with, for error messages. */
 char *program_name;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
-/* If non-zero, print or set Coordinated Universal Time.  */
+/* If nonzero, print or set Coordinated Universal Time.  */
 static int universal_time = 0;
 
 static struct option const long_options[] =
@@ -76,7 +76,7 @@ static struct option const long_options[] =
 /* Parse each line in INPUT_FILENAME as with --date and display the
    each resulting time and date.  If the file cannot be opened, tell why
    then exit.  Issue a diagnostic for any lines that cannot be parsed.
-   If any line cannot be parsed, return non-zero;  otherwise return zero.  */
+   If any line cannot be parsed, return nonzero;  otherwise return zero.  */
 
 static int
 batch_convert (input_filename, format)
index dae19ee0421e260aeaa593a738cedafe805d2f04..09f66aba26b4d796cee4b3f44a43a5e23d863f8e 100644 (file)
--- a/src/dd.c
+++ b/src/dd.c
@@ -305,10 +305,10 @@ static unsigned char const ebcdic_to_ascii[] =
   070, 071, 0372, 0373, 0374, 0375, 0376, 0377
 };
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
index 222f973e0a81fe19b0c3ffc23bbb9149eff8394c..a8400ecdd8bb919d42b75e3bc2cb18601c8ae4d7 100644 (file)
--- a/src/df.c
+++ b/src/df.c
@@ -81,7 +81,7 @@ static int posix_format;
 
 /* If nonzero, invoke the `sync' system call before getting any usage data.
    Using this option can make df very slow, especially with many or very
-   busy disks.  Default to non-zero because the sync call does make a
+   busy disks.  Default to nonzero because the sync call does make a
    difference on some systems -- SunOs4.1.3, for one.  I have been assured
    that it is *not* necessary on Linux, so there should be a way to
    configure this.  FIXME.  */
@@ -119,13 +119,13 @@ static struct fs_type_list *fs_exclude_list;
 /* Linked list of mounted filesystems. */
 static struct mount_entry *mount_list;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
-/* If non-zero, print filesystem type as well.  */
+/* If nonzero, print filesystem type as well.  */
 static int print_type;
 
 static struct option const long_options[] =
index 41e8b537b3821f734f61b772ca5e8d9a0dfd5544..0041232fa293bc27db1152bacb299319f1484800 100644 (file)
--- a/src/du.c
+++ b/src/du.c
@@ -159,10 +159,10 @@ static int (*xstat) ();
 /* The exit status to use if we don't get any fatal errors. */
 static int exit_status;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 /* Grand total size of all args. */
@@ -554,7 +554,7 @@ hash_reset (void)
 
 /* Insert an item (inode INO and device DEV) in the hash
    structure in the global variable `htab', if an entry with the same data
-   was not found already.  Return zero if the item was inserted and non-zero
+   was not found already.  Return zero if the item was inserted and nonzero
    if it wasn't.  */
 
 static int
@@ -621,7 +621,7 @@ hash_insert (ino_t ino, dev_t dev)
 }
 
 /* Insert INO and DEV in the hash structure HTAB, if not
-   already present.  Return zero if inserted and non-zero if it
+   already present.  Return zero if inserted and nonzero if it
    already existed.  */
 
 static int
index 816b3b80ece8f41c1ed130fcd49c0056b3166202..0bce0eb99007e75c16c130d95d842494b15c9f38 100644 (file)
--- a/src/env.c
+++ b/src/env.c
@@ -96,10 +96,10 @@ extern char **environ;
 /* The name by which this program was run. */
 char *program_name;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
@@ -150,7 +150,7 @@ main (argc, argv, envp)
 
   if (optind != argc && !strcmp (argv[optind], "-"))
     ignore_environment = 1;
-  
+
   environ = dummy_environ;
   environ[0] = NULL;
 
index b02ba785353434592bc6a7cdc8c3dd2641a9900c..d161ac3ff5fa996163c01c2af41e8a91fb7e9913 100644 (file)
--- a/src/id.c
+++ b/src/id.c
@@ -84,10 +84,10 @@ static gid_t rgid, egid;
 /* The number of errors encountered so far. */
 static int problems = 0;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
@@ -285,14 +285,14 @@ print_full_info (username)
     problems++;
   else
     printf ("(%s)", pwd->pw_name);
-  
+
   printf (" gid=%u", (unsigned) rgid);
   grp = getgrgid (rgid);
   if (grp == NULL)
     problems++;
   else
     printf ("(%s)", grp->gr_name);
-  
+
   if (euid != ruid)
     {
       printf (" euid=%u", (unsigned) euid);
@@ -302,7 +302,7 @@ print_full_info (username)
       else
        printf ("(%s)", pwd->pw_name);
     }
-  
+
   if (egid != rgid)
     {
       printf (" egid=%u", (unsigned) egid);
index 86dc6f1d37fa722edc770fa30c98c32ba062911a..dea82831fd48b9af5948b4496666575a1d52b759 100644 (file)
@@ -134,10 +134,10 @@ static int strip_files;
 /* If nonzero, install a directory instead of a regular file. */
 static int dir_arg;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -303,7 +303,7 @@ static char buffer[READ_SIZE];
 
 /* Copy file FROM onto file TO, creating TO if necessary.
    Return 0 if the copy is successful, 1 if not.  If the copy is
-   successful, set *TO_CREATED to non-zero if TO was created (if it did
+   successful, set *TO_CREATED to nonzero if TO was created (if it did
    not exist or did, but was unlinked) and to zero otherwise.  If the
    copy fails, don't modify *TO_CREATED.  */
 
@@ -394,7 +394,7 @@ copy_file (char *from, char *to, int *to_created)
 }
 
 /* Set the attributes of file or directory PATH.
-   If NO_NEED_TO_CHOWN is non-zero, don't call chown.
+   If NO_NEED_TO_CHOWN is nonzero, don't call chown.
    Return 0 if successful, 1 if not. */
 
 static int
index d80a9c0da3c2a5f07d1dcd78b4ba5335e04ce15b..8f144aabbe338fccb95dffec83409cac3a21fb98 100644 (file)
--- a/src/ln.c
+++ b/src/ln.c
@@ -92,10 +92,10 @@ static int hard_dir_link;
    symlink-to-dir before creating the new link.  */
 static int dereference_dest_dir_symlinks = 1;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -177,7 +177,7 @@ do_link (char *source, char *dest)
       char *new_dest;
       PATH_BASENAME_CONCAT (new_dest, dest, source);
       dest = new_dest;
-      /* Set this to non-zero to force another call to lstat
+      /* Set this to nonzero to force another call to lstat
         with the new destination.  */
       lstat_status = 1;
     }
index 44b53a854082179110a8cfa1c369888e6fd1ebcc..e12c3ebd75c6ac18c1458b6518428d96942bb1e6 100644 (file)
 /* The name this program was run with. */
 char *program_name;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
index e07c0eaa9dda5a1e9c6401337a0b3f57c7ad5812..8d234877d173e88666b086592f52e35598ba895f 100644 (file)
--- a/src/ls.c
+++ b/src/ls.c
@@ -465,10 +465,10 @@ static int format_needs_stat;
 
 static int exit_status;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -1673,7 +1673,7 @@ extract_dirs_from_files (const char *dirname, int recursive)
   files_index = j;
 }
 \f
-/* Return non-zero if `name' doesn't end in `.' or `..'
+/* Return nonzero if `name' doesn't end in `.' or `..'
    This is so we don't try to recurse on `././././. ...' */
 
 static int
index 6312bb3d36213aa2bfc751572d4489195fd856d4..6b4aad8d3cd3e8780b043cc3439584e4bd6013ba 100644 (file)
@@ -44,10 +44,10 @@ char *program_name;
 /* If nonzero, ensure that all parents of the specified directory exist.  */
 static int path_mode;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
index 86e3377d59e0223433b90167d9eaf81b96ae554a..ec33aef501d0786c20d1e963155d1d8c975dd6f7 100644 (file)
 /* The name this program was run with. */
 char *program_name;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
index 30989bcce741183e494c94c7d8d2756f78b8aa19..580ccae2e13cf5456cb069b70fb04be9d6a0f334 100644 (file)
 /* The name this program was run with. */
 char *program_name;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
index 2cea495c9deb6aff42f160e2b6209ece6bb4a108..089a261c3c012c2ce7ae0c0727fb327aaf2d313b 100644 (file)
--- a/src/mv.c
+++ b/src/mv.c
@@ -91,10 +91,10 @@ static uid_t myeuid;
 /* FIXME */
 static struct stat dest_stats, source_stats;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
index 2b10b8c65f2671996f6955f164fbf52deb1f1fec..9c137ee25a7b01b81a7a433ad696c55c90219778 100644 (file)
@@ -99,10 +99,10 @@ static void usage ();
 /* The name this program was run with. */
 char *program_name;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
@@ -174,13 +174,13 @@ static char const portable_chars[256] =
   1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, /* 80-95 */
   0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 96-111 */
   1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, /* 112-127 */
-  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
-  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
-  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
-  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
-  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
-  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
-  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
+  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 };
 
index f631ab13a627905ae3c6352d1e625a347f38331a..8cee1766b9338cf8fb5f5f82f40493df56eeddb5 100644 (file)
 /* The name this program was run with. */
 char *program_name;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
index 2f9593eeb0c8e7ede0ebad0ca6e65e2d2bdeee57..26c52869905c2d774fb37699a341487c0e92535c 100644 (file)
--- a/src/rm.c
+++ b/src/rm.c
@@ -93,10 +93,10 @@ static int unlink_dirs;
 /* If nonzero, stdin is a tty.  */
 static int stdin_tty;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_opts[] =
index 8c2f75b7ec24c6d9d9ae654bf0eae1d268280e26..13593fb0a3fdd4a5900372564daf7fab9b52b86c 100644 (file)
@@ -39,10 +39,10 @@ char *program_name;
 /* If nonzero, remove empty parent directories. */
 static int empty_paths;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
index ec72eea502f8f825d7e3e04bafd20f185424fd34..2cd1bc30ad90cf9081144a0ee9e8fe9779aa8997 100644 (file)
--- a/src/seq.c
+++ b/src/seq.c
@@ -30,7 +30,7 @@ static int check_format ();
 static char *get_width_format ();
 static int print_numbers ();
 
-/* If non-zero print all number with equal width. */
+/* If nonzero print all number with equal width. */
 static int equal_width;
 
 /* The printf(3) format used for output. */
@@ -45,10 +45,10 @@ char *program_name;
 /* The string used to separate two number. */
 static char *separator;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 /* The increment. */
@@ -111,7 +111,7 @@ main (argc, argv)
   from = 1.0;
   step_is_set = 0;
 
-  /* We have to handle negative numbers in the command line but this 
+  /* We have to handle negative numbers in the command line but this
      conflicts with the command line arguments.  So the getopt mode is
      REQUIRE_ORDER (the '+' in the format string) and it abort on the
      first non-option or negative number.  */
index 15b8fb065f19c0ddfb2e7f7648d39e06e3102d88..e8f5cd9f98f66d11ca478e7596159dd0b760bbdb 100644 (file)
@@ -29,10 +29,10 @@ static long argdecode ();
 /* The name by which this program was run. */
 char *program_name;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
index e177a486b1ff08b4c2f418b41244044b0246cb43..7ca5e1fdebc48e800e7106497f8ef6fb6c138252 100644 (file)
@@ -1186,7 +1186,7 @@ set_speed (type, arg, mode)
 
 /* Get window size information.  First try getting the information
    associated with standard output and if that fails, try standard input.
-   Return zero for success, non-zero if both ioctl's failed.  */
+   Return zero for success, nonzero if both ioctl's failed.  */
 
 static int
 get_win_size (win)
index ea4f1bfdcd7cb44ffbf5290620ff65c3d01ae431..1464d3b2a498644baa68194bf347b5ba961e448b 100644 (file)
--- a/src/su.c
+++ b/src/su.c
@@ -161,10 +161,10 @@ extern char **environ;
 /* The name this program was run with.  */
 char *program_name;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 /* If nonzero, pass the `-f' option to the subshell.  */
index b81d375791be1541605dad3b7afb391308ce5433..2e980243a2d7a43b6abc2f702b941fc8220d9632 100644 (file)
--- a/src/tee.c
+++ b/src/tee.c
@@ -41,10 +41,10 @@ static int ignore_interrupts;
 /* The name that this program was run with. */
 char *program_name;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
@@ -85,7 +85,7 @@ main (argc, argv)
 {
   int errs;
   int optc;
-       
+
   program_name = argv[0];
   append = 0;
   ignore_interrupts = 0;
index 6675c3e991ce60a1e7a7e8f90f9fa8d6b2c5ef88..4baab19249339c332c69096c5e1daaffdcdcd5cc 100644 (file)
@@ -248,7 +248,7 @@ integer_expected_error (pch)
   test_syntax_error (_("integer expression expected %s\n"), pch);
 }
 
-/* Return non-zero if the characters pointed to by STRING constitute a
+/* Return nonzero if the characters pointed to by STRING constitute a
    valid number.  Stuff the converted number into RESULT if RESULT is
    a non-null pointer to a long. */
 static int
@@ -309,7 +309,7 @@ isint (string, result)
 }
 
 /* Find the modification time of FILE, and stuff it into AGE, a pointer
-   to a long.  Return non-zero if successful, else zero. */
+   to a long.  Return nonzero if successful, else zero. */
 static int
 age_of (filename, age)
      char *filename;
@@ -882,7 +882,7 @@ binop (s)
          (STREQ (s, "-gt")) || (STREQ (s, "-ge")));
 }
 
-/* Return non-zero if OP is one of the test command's unary operators. */
+/* Return nonzero if OP is one of the test command's unary operators. */
 static int
 unop (op)
      int op;
@@ -1008,7 +1008,7 @@ EXPRESSION is true or false and sets exit status.  It is one of:\n\
   EXPRESSION1 -a EXPRESSION2   both EXPRESSION1 and EXPRESSION2 are true\n\
   EXPRESSION1 -o EXPRESSION2   either EXPRESSION1 or EXPRESSION2 is true\n\
 \n\
-  [-n] STRING          the length of STRING is non-zero\n\
+  [-n] STRING          the length of STRING is nonzero\n\
   -z STRING            the length of STRING is zero\n\
   STRING1 = STRING2    the strings are equal\n\
   STRING1 != STRING2   the strings are not equal\n\
index b53935359f85286202ceecd155f487e37765cf16..c49ddb28cd233c31cf5059cec76007c253df3f5c 100644 (file)
@@ -93,10 +93,10 @@ static char *ref_file;
 /* Info about the reference file. */
 static struct stat ref_stats;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
index 6a9baf1a4a57a7338dc5314ac7bfb8419032b298..29d279df1aa530109ea0f60df2583b2701c3aa5f 100644 (file)
--- a/src/tty.c
+++ b/src/tty.c
@@ -39,10 +39,10 @@ char *program_name;
 /* If nonzero, return an exit status but produce no output. */
 static int silent;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const longopts[] =
index 6fd34d8c344e36b0989e900b5126e40e56a6708c..dc4bcd3607cfef9c8ada53fc1762dcb0ae7382ba 100644 (file)
@@ -20,7 +20,7 @@
    -s, --sysname       SunOS
    -n, --nodename      rocky8
    -r, --release       4.0
-   -v, --version       
+   -v, --version
    -m, --machine       sun
    -a, --all           SunOS rocky8 4.0  sun
 
@@ -63,10 +63,10 @@ static unsigned char toprint;
 /* The name this program was run with, for error messages. */
 char *program_name;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =
index d311342967e7b2bea78d8e4c81acbd900f0086da..cb0125fd8af328f6e30980d8f1e8ca149a50a5a8 100644 (file)
--- a/src/who.c
+++ b/src/who.c
@@ -92,10 +92,10 @@ char *xmalloc ();
 /* The name this program was run with. */
 char *program_name;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 #ifdef WHO
@@ -226,7 +226,7 @@ print_entry (this)
       mesg = '?';
       last_change = 0;
     }
-  
+
   printf ("%-8.*s", (int) sizeof (this->ut_name), this->ut_name);
   if (include_mesg)
     printf ("  %c  ", mesg);
@@ -492,7 +492,7 @@ who_am_i (filename)
   if (tty == NULL)
     return;
   tty += 5;                    /* Remove "/dev/".  */
-  
+
   utmp_entry = search_entries (read_utmp (filename), tty);
   if (utmp_entry == NULL)
     return;
index 2a7b45e65a983c04aedfb1d68c43b8cde6873224..f762dbc60d5573f799dd5bdbf6032f0170439819 100644 (file)
 /* The name this program was run with. */
 char *program_name;
 
-/* If non-zero, display usage information and exit.  */
+/* If nonzero, display usage information and exit.  */
 static int show_help;
 
-/* If non-zero, print the version on standard output and exit.  */
+/* If nonzero, print the version on standard output and exit.  */
 static int show_version;
 
 static struct option const long_options[] =