* mount.cc (longopts): Fix typo which disallows --options option.
This commit is contained in:
parent
0c5c6c234f
commit
bb002a4968
|
@ -1,3 +1,7 @@
|
||||||
|
2005-08-03 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* mount.cc (longopts): Fix typo which disallows --options option.
|
||||||
|
|
||||||
2005-07-19 Christopher Faylor <cgf@timesys.com>
|
2005-07-19 Christopher Faylor <cgf@timesys.com>
|
||||||
Eric Blake <ebb9@byu.net>
|
Eric Blake <ebb9@byu.net>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* mount.cc
|
/* mount.cc
|
||||||
|
|
||||||
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Red Hat, Inc.
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005 Red Hat, Inc.
|
||||||
|
|
||||||
This file is part of Cygwin.
|
This file is part of Cygwin.
|
||||||
|
|
||||||
|
@ -140,7 +140,7 @@ static struct option longopts[] =
|
||||||
{"help", no_argument, NULL, 'h' },
|
{"help", no_argument, NULL, 'h' },
|
||||||
{"mount-commands", no_argument, NULL, 'm'},
|
{"mount-commands", no_argument, NULL, 'm'},
|
||||||
{"no-executable", no_argument, NULL, 'E'},
|
{"no-executable", no_argument, NULL, 'E'},
|
||||||
{"options", required_argument, NULL, 'E'},
|
{"options", required_argument, NULL, 'o'},
|
||||||
{"show-cygdrive-prefix", no_argument, NULL, 'p'},
|
{"show-cygdrive-prefix", no_argument, NULL, 'p'},
|
||||||
{"system", no_argument, NULL, 's'},
|
{"system", no_argument, NULL, 's'},
|
||||||
{"text", no_argument, NULL, 't'},
|
{"text", no_argument, NULL, 't'},
|
||||||
|
|
Loading…
Reference in New Issue