(file) Return to cimserver.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Server

Diff for /pegasus/src/Server/cimserver.cpp between version 1.143 and 1.144

version 1.143, 2005/01/07 22:45:01 version 1.144, 2005/01/24 11:01:02
Line 48 
Line 48 
 // //
 // Modified By: Amit K Arora, IBM (amitarora@in.ibm.com) - pep 167 // Modified By: Amit K Arora, IBM (amitarora@in.ibm.com) - pep 167
 // //
   // Modified By: Josephine Eskaline Joyce, IBM (jojustin@in.ibm.com) - Bug#2555
   //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
  
Line 933 
Line 935 
         CString portString = httpsPort.getCString();         CString portString = httpsPort.getCString();
         char* end = 0;         char* end = 0;
         Uint32 port = strtol(portString, &end, 10);         Uint32 port = strtol(portString, &end, 10);
         assert(end != 0 && *end == '\0');          if(!(end != 0 && *end == '\0'))
           {
               PEGASUS_STD(cerr) << "Bad HTTPS Port Value" << PEGASUS_STD(endl);
               exit(1);
           }
   
  
         //         //
         // Look up the WBEM-HTTPS port number         // Look up the WBEM-HTTPS port number
Line 947 
Line 954 
         CString portString = httpPort.getCString();         CString portString = httpPort.getCString();
         char* end = 0;         char* end = 0;
         Uint32 port = strtol(portString, &end, 10);         Uint32 port = strtol(portString, &end, 10);
         assert(end != 0 && *end == '\0');          if(!(end != 0 && *end == '\0'))
           {
               PEGASUS_STD(cerr) << "Bad HTTP Port Value" << PEGASUS_STD(endl);
               exit(1);
           }
         //         //
         // Look up the WBEM-HTTP port number         // Look up the WBEM-HTTP port number
         //         //


Legend:
Removed from v.1.143  
changed lines
  Added in v.1.144

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2