summaryrefslogtreecommitdiff
path: root/apps/JAWS/clients/Blobby/Options.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-26 15:46:44 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-26 15:46:44 +0000
commit0bc80fab4dc53994efbd511b22b0c86d59baff8c (patch)
tree3e074e160a2e59a236f10781cfcb0e071b49fac8 /apps/JAWS/clients/Blobby/Options.cpp
parentcde21c2507ace716fc833231662ff0f85ff13f5a (diff)
downloadATCD-0bc80fab4dc53994efbd511b22b0c86d59baff8c.tar.gz
ChangeLogTag:Wed Dec 26 09:07:45 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
Diffstat (limited to 'apps/JAWS/clients/Blobby/Options.cpp')
-rw-r--r--apps/JAWS/clients/Blobby/Options.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/JAWS/clients/Blobby/Options.cpp b/apps/JAWS/clients/Blobby/Options.cpp
index 4c28033ae19..08f7de4ad8b 100644
--- a/apps/JAWS/clients/Blobby/Options.cpp
+++ b/apps/JAWS/clients/Blobby/Options.cpp
@@ -40,19 +40,19 @@ Options::parse_args (int argc, ACE_TCHAR *argv[])
this->operation_ = 'w';
break;
case 'h':
- this->hostname_ = get_opt.optarg;
+ this->hostname_ = get_opt.opt_arg ();
break;
case 'p':
- this->port_ = ACE_OS::atoi (get_opt.optarg);
+ this->port_ = ACE_OS::atoi (get_opt.opt_arg ());
break;
case 'f':
- this->filename_ = get_opt.optarg;
+ this->filename_ = get_opt.opt_arg ();
break;
case 'l':
- this->length_ = ACE_OS::atoi (get_opt.optarg);
+ this->length_ = ACE_OS::atoi (get_opt.opt_arg ());
break;
case 'o':
- this->offset_ = ACE_OS::atoi (get_opt.optarg);
+ this->offset_ = ACE_OS::atoi (get_opt.opt_arg ());
break;
// Usage fallthrough.
default: