diff options
author | gonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-06-10 07:33:55 +0000 |
---|---|---|
committer | gonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-06-10 07:33:55 +0000 |
commit | e48607d3e409cba2447fe8dc24ffb98810f96579 (patch) | |
tree | cbd17a5dffadf187dae53b850675c7f0567768a6 /ace/Get_Opt.cpp | |
parent | 176b60d72029863ce45ff0998de5078bf5b3c72a (diff) | |
download | ATCD-e48607d3e409cba2447fe8dc24ffb98810f96579.tar.gz |
Tests now run OK (most of them) with BCB3
Diffstat (limited to 'ace/Get_Opt.cpp')
-rw-r--r-- | ace/Get_Opt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Get_Opt.cpp b/ace/Get_Opt.cpp index cf72d8a5bc4..b009bc80bc7 100644 --- a/ace/Get_Opt.cpp +++ b/ace/Get_Opt.cpp @@ -109,7 +109,7 @@ ACE_Get_Opt::operator () (void) opt = (int) *this->nextchar_++; if (opt == (int) ':' - || !(oli = ACE_OS::strchr (this->optstring_, opt))) + || ((oli = ACE_OS::strchr (this->optstring_, opt)) == 0)) { // If the user didn't specify '-' as an option, assume it means // EOF. |