Browse Source

[2307]fix misspelling typos in output

Jeremy C. Reed 11 years ago
parent
commit
a0d26fc14e
1 changed files with 8 additions and 8 deletions
  1. 8 8
      tests/tools/perfdhcp/command_options.cc

+ 8 - 8
tests/tools/perfdhcp/command_options.cc

@@ -177,7 +177,7 @@ CommandOptions::initialize(int argc, char** argv, bool print_cmd_line) {
 
         case 'b':
             check(base_.size() > 3, "-b<value> already specified,"
-                  " unexpected occurence of 5th -b<value>");
+                  " unexpected occurrence of 5th -b<value>");
             base_.push_back(optarg);
             decodeBase(base_.back());
             break;
@@ -193,7 +193,7 @@ CommandOptions::initialize(int argc, char** argv, bool print_cmd_line) {
         case 'd':
             check(drop_time_set_ > 1,
                   "maximum number of drops already specified, "
-                  "unexpected 3rd occurence of -d<value>");
+                  "unexpected 3rd occurrence of -d<value>");
             try {
                 drop_time_[drop_time_set_] =
                     boost::lexical_cast<double>(optarg);
@@ -212,7 +212,7 @@ CommandOptions::initialize(int argc, char** argv, bool print_cmd_line) {
             percent_loc = drop_arg.find('%');
             check(max_pdrop_.size() > 1 || max_drop_.size() > 1,
                   "values of maximum drops: -D<value> already "
-                  "specified, unexpected 3rd occurence of -D,value>");
+                  "specified, unexpected 3rd occurrence of -D<value>");
             if ((percent_loc) != std::string::npos) {
                 try {
                     drop_percent =
@@ -272,7 +272,7 @@ CommandOptions::initialize(int argc, char** argv, bool print_cmd_line) {
             if (num_request_.size() >= 2) {
                 isc_throw(isc::InvalidParameter,
                           "value of maximum number of requests: -n<value> "
-                          "already specified, unexpected 3rd occurence"
+                          "already specified, unexpected 3rd occurrence"
                           " of -n<value>");
             }
             num_request_.push_back(num_req);
@@ -285,7 +285,7 @@ CommandOptions::initialize(int argc, char** argv, bool print_cmd_line) {
             } else {
                 isc_throw(isc::InvalidParameter,
                           "random offsets already specified,"
-                          " unexpected 3rd occurence of -O<value>");
+                          " unexpected 3rd occurrence of -O<value>");
             }
             check(offset_arg < 3, "value of random random-offset:"
                   " -O<value> must be greater than 3 ");
@@ -339,7 +339,7 @@ CommandOptions::initialize(int argc, char** argv, bool print_cmd_line) {
             } else {
                 isc_throw(isc::InvalidParameter,
                           "template files are already specified,"
-                          " unexpected 3rd -T<filename> occurence");
+                          " unexpected 3rd -T<filename> occurrence");
             }
             break;
 
@@ -365,7 +365,7 @@ CommandOptions::initialize(int argc, char** argv, bool print_cmd_line) {
             } else {
                 isc_throw(isc::InvalidParameter,
                           "transaction ids already specified,"
-                          " unexpected 3rd -X<value> occurence");
+                          " unexpected 3rd -X<value> occurrence");
             }
             xid_offset_.push_back(offset_arg);
             break;
@@ -712,7 +712,7 @@ CommandOptions::printCommandLine() const {
         if (ipversion_ == 4) {
             std::cout << "DISCOVER-OFFER only" << std::endl;
         } else {
-            std::cout << "SOLICIT-ADVERETISE only" << std::endl;
+            std::cout << "SOLICIT-ADVERTISE only" << std::endl;
         }
     }
     if (rate_ != 0) {