OSDN Git Service

* mount.cc (usage): Correctly report default mode.
authorcgf <cgf>
Sat, 19 Oct 2002 11:41:31 +0000 (11:41 +0000)
committercgf <cgf>
Sat, 19 Oct 2002 11:41:31 +0000 (11:41 +0000)
winsup/utils/ChangeLog
winsup/utils/mount.cc
winsup/utils/strace.cc

index 666f575..56a5cf2 100644 (file)
@@ -1,3 +1,7 @@
+2002-10-19  Christopher Faylor  <cgf@redhat.com>
+
+       * mount.cc (usage): Correctly report default mode.
+
 2002-09-29  Christopher Faylor  <cgf@redhat.com>
 
        * cygpath.cc (close_arg): Remove unused static.
index 038df0b..d4852e5 100644 (file)
@@ -134,7 +134,7 @@ static void
 usage (FILE *where = stderr)
 {
   fprintf (where, "Usage: %s [OPTION] [<win32path> <posixpath>]\n\
-  -b, --binary                  text files are equivalent to binary files\n\
+  -b, --binary     (default)    text files are equivalent to binary files\n\
                                (newline = \\n)\n\
   -c, --change-cygdrive-prefix  change the cygdrive path prefix to <posixpath>\n\
   -f, --force                   force mount, don't warn about missing mount\n\
@@ -144,7 +144,7 @@ usage (FILE *where = stderr)
                                system mount points and cygdrive prefixes\n\
   -p, --show-cygdrive-prefix    show user and/or system cygdrive path prefix\n\
   -s, --system     (default)    add system-wide mount point\n\
-  -t, --text       (default)    text files get \\r\\n line endings\n\
+  -t, --text                    text files get \\r\\n line endings\n\
   -u, --user                    add user-only mount point\n\
   -v, --version                 output version information and exit\n\
   -x, --executable              treat all files under mount point as executables\n\
index 79187cd..26ffa47 100644 (file)
@@ -944,10 +944,10 @@ character #%d.\n", optarg, (int) (endptr - optarg), endptr);
 #endif
        break;
       case 'p':
-       pid = strtol (optarg, NULL, 10);
+       pid = strtoul (optarg, NULL, 10);
        break;
       case 'S':
-       flush_period = strtol (optarg, NULL, 10);
+       flush_period = strtoul (optarg, NULL, 10);
        break;
       case 't':
        hhmmss ^= 1;