diff options
author | Christopher Faylor <me@cgf.cx> | 2005-03-06 18:00:03 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-03-06 18:00:03 +0000 |
commit | 5f8e4efa678ccb7b699a04f980b2a60e776c90da (patch) | |
tree | bacb72096a12318fe6aaad1415566e88694b01b3 /winsup | |
parent | 57a64c15da30be80bb7c9cec0f040fa720cd60f4 (diff) | |
download | newlib-5f8e4efa678ccb7b699a04f980b2a60e776c90da.zip newlib-5f8e4efa678ccb7b699a04f980b2a60e776c90da.tar.gz newlib-5f8e4efa678ccb7b699a04f980b2a60e776c90da.tar.bz2 |
* cygpath.cc (usage): Pass in one more copy of program_name to printf to avoid
a SEGV.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/utils/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/utils/cygpath.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog index 31bf8ec..51f34cd 100644 --- a/winsup/utils/ChangeLog +++ b/winsup/utils/ChangeLog @@ -1,3 +1,8 @@ +2005-03-06 Christopher Faylor <cgf@timesys.com> + + * cygpath.cc (usage): Pass in one more copy of program_name to printf + to avoid a SEGV. + 2005-02-27 Christopher Faylor <cgf@timesys.com> * regtool.cc (opts): The argument to 'K' is not optional. diff --git a/winsup/utils/cygpath.cc b/winsup/utils/cygpath.cc index 782ac50..6410859 100644 --- a/winsup/utils/cygpath.cc +++ b/winsup/utils/cygpath.cc @@ -89,7 +89,7 @@ System information:\n\ -P, --smprograms output Start Menu `Programs' directory and exit\n\ -S, --sysdir output system directory and exit\n\ -W, --windir output `Windows' directory and exit\n\ -", prog_name, prog_name); +", prog_name, prog_name, prog_name); if (ignore_flag) /* nothing to do */; else if (stream != stdout) |