Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-03-07 06:06:28 +0300
committerChristopher Faylor <me@cgf.cx>2002-03-07 06:06:28 +0300
commitb9262dd919ef97376743486e7b4a362409fdec20 (patch)
tree2abc8c8aa59169d6fe88533b3dce72963f680dac /winsup
parent6a34460970e5fcefad880aa48f8a9551e551d991 (diff)
* cygcheck.cc (longopts): Use correct short option for --version.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/utils/ChangeLog4
-rw-r--r--winsup/utils/cygcheck.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog
index a553543ec..1c7625cd9 100644
--- a/winsup/utils/ChangeLog
+++ b/winsup/utils/ChangeLog
@@ -1,5 +1,9 @@
2002-03-06 Christopher Faylor <cgf@redhat.com>
+ * cygcheck.cc (longopts): Use correct short option for --version.
+
+2002-03-06 Christopher Faylor <cgf@redhat.com>
+
* cygpath.cc: Reformat.
2002-02-27 Joshua Daniel Franklin <joshuadfranklin@yahoo.com>
diff --git a/winsup/utils/cygcheck.cc b/winsup/utils/cygcheck.cc
index f73ca860e..534246aa2 100644
--- a/winsup/utils/cygcheck.cc
+++ b/winsup/utils/cygcheck.cc
@@ -1240,7 +1240,7 @@ struct option longopts[] = {
{"verbose", no_argument, NULL, 'v'},
{"keycheck", no_argument, NULL, 'k'},
{"help", no_argument, NULL, 'h'},
- {"version", no_argument, 0, 'z'},
+ {"version", no_argument, 0, 'V'},
{0, no_argument, NULL, 0}
};