summaryrefslogtreecommitdiff
path: root/examples/ASX/Event_Server/Event_Server/Options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ASX/Event_Server/Event_Server/Options.cpp')
-rw-r--r--examples/ASX/Event_Server/Event_Server/Options.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/examples/ASX/Event_Server/Event_Server/Options.cpp b/examples/ASX/Event_Server/Event_Server/Options.cpp
index 3f180fe0b5d..b6aab6b1d2c 100644
--- a/examples/ASX/Event_Server/Event_Server/Options.cpp
+++ b/examples/ASX/Event_Server/Event_Server/Options.cpp
@@ -115,40 +115,40 @@ Options::parse_args (int argc, char *argv[])
this->t_flags (THR_BOUND);
break;
case 'c':
- this->consumer_port (ACE_OS::atoi (get_opt.optarg));
+ this->consumer_port (ACE_OS::atoi (get_opt.opt_arg ()));
break;
case 'd':
this->debugging_ = 1;
break;
case 'H':
- this->high_water_mark (ACE_OS::atoi (get_opt.optarg));
+ this->high_water_mark (ACE_OS::atoi (get_opt.opt_arg ()));
break;
case 'i':
- this->iterations (ACE_OS::atoi (get_opt.optarg));
+ this->iterations (ACE_OS::atoi (get_opt.opt_arg ()));
break;
case 'L':
- this->low_water_mark (ACE_OS::atoi (get_opt.optarg));
+ this->low_water_mark (ACE_OS::atoi (get_opt.opt_arg ()));
break;
case 'l':
- this->initial_queue_length (ACE_OS::atoi (get_opt.optarg));
+ this->initial_queue_length (ACE_OS::atoi (get_opt.opt_arg ()));
break;
case 'M':
- this->message_size (ACE_OS::atoi (get_opt.optarg));
+ this->message_size (ACE_OS::atoi (get_opt.opt_arg ()));
break;
case 'n':
this->t_flags (THR_NEW_LWP);
break;
case 's':
- this->supplier_port (ACE_OS::atoi (get_opt.optarg));
+ this->supplier_port (ACE_OS::atoi (get_opt.opt_arg ()));
break;
case 'T':
- if (ACE_OS::strcasecmp (get_opt.optarg, "ON") == 0)
+ if (ACE_OS::strcasecmp (get_opt.opt_arg (), "ON") == 0)
ACE_Trace::start_tracing ();
- else if (ACE_OS::strcasecmp (get_opt.optarg, "OFF") == 0)
+ else if (ACE_OS::strcasecmp (get_opt.opt_arg (), "OFF") == 0)
ACE_Trace::stop_tracing ();
break;
case 't':
- this->thr_count (ACE_OS::atoi (get_opt.optarg));
+ this->thr_count (ACE_OS::atoi (get_opt.opt_arg ()));
break;
case 'v':
this->verbosity_ = 1;