diff options
author | Christopher Faylor <me@cgf.cx> | 2002-10-19 11:41:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-10-19 11:41:31 +0000 |
commit | 7c518815315e6e7d8943314e42982a829bb3fb09 (patch) | |
tree | 1554e634fd0cb41a2047c39111b930753b26ff7e /winsup/utils/mount.cc | |
parent | a85860b5c868d7c3865e5d912916e51a55014ac7 (diff) | |
download | newlib-7c518815315e6e7d8943314e42982a829bb3fb09.zip newlib-7c518815315e6e7d8943314e42982a829bb3fb09.tar.gz newlib-7c518815315e6e7d8943314e42982a829bb3fb09.tar.bz2 |
* mount.cc (usage): Correctly report default mode.
Diffstat (limited to 'winsup/utils/mount.cc')
-rw-r--r-- | winsup/utils/mount.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/utils/mount.cc b/winsup/utils/mount.cc index 038df0b..d4852e5 100644 --- a/winsup/utils/mount.cc +++ b/winsup/utils/mount.cc @@ -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\ |