Skip to content

Commit

Permalink
change invocation examples to work on OS X
Browse files Browse the repository at this point in the history
  • Loading branch information
szaka committed Nov 30, 2008
1 parent 86b9c82 commit 70b7c4f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/ntfs-3g.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,13 @@ static const char *usage_msg =
"Copyright (C) 2006-2008 Szabolcs Szakacsits\n"
"Copyright (C) 2005-2007 Yura Pakhuchiy\n"
"\n"
"Usage: %s <device|image_file> <mount_point> [-o option[,...]]\n"
"Usage: %s [-o option[,...]] <device|image_file> <mount_point>\n"
"\n"
"Options: ro (read-only mount), force, remove_hiberfile, locale=,\n"
" uid=, gid=, umask=, fmask=, dmask=, streams_interface=.\n"
" Please see the details in the manual.\n"
"\n"
"Example: ntfs-3g /dev/sda1 /mnt/win -o force\n"
"Examples: ntfs-3g -o force /dev/sda1 /mnt/windows\n"
"\n"
"%s";

Expand Down
4 changes: 2 additions & 2 deletions src/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ static const char *hibernated_volume_msg =
"mount the volume read-write with the 'remove_hiberfile' mount option.\n"
"For example type on the command line:\n"
"\n"
" mount -t ntfs-3g %s %s -o remove_hiberfile\n"
" mount -t ntfs-3g -o remove_hiberfile %s %s\n"
"\n";

static const char *unclean_journal_msg =
Expand Down Expand Up @@ -97,7 +97,7 @@ static const char *access_denied_msg =

static const char *forced_mount_msg =
"\n"
" mount -t ntfs-3g %s %s -o force\n"
" mount -t ntfs-3g -o force %s %s\n"
"\n"
" Or add the option to the relevant row in the /etc/fstab file:\n"
"\n"
Expand Down

0 comments on commit 70b7c4f

Please sign in to comment.