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

Diff for /pegasus/src/Pegasus/Common/System.cpp between version 1.79.2.1 and 1.85

version 1.79.2.1, 2013/06/03 22:35:13 version 1.85, 2015/05/30 19:32:30
Line 1009 
Line 1009 
                      servname,                      servname,
                      hints,                      hints,
                      res);                      res);
         if( 0 != rc && rc != EAI_AGAIN)      } while( rc == EAI_AGAIN && --maxTries > 0);
   
       if(rc != 0)
         {         {
             PEG_TRACE((TRC_OS_ABSTRACTION, Tracer::LEVEL1,             PEG_TRACE((TRC_OS_ABSTRACTION, Tracer::LEVEL1,
                         "getaddrinfo failed: %s",gai_strerror(rc)));                         "getaddrinfo failed: %s",gai_strerror(rc)));
             break;  
         }         }
     } while( rc == EAI_AGAIN && --maxTries > 0);  
     return rc;     return rc;
 } }
  
Line 1039 
Line 1039 
                 serv,                 serv,
                 servlen,                 servlen,
                 flags);                 flags);
         if( rc != 0 && rc != EAI_AGAIN)      } while( rc == EAI_AGAIN && --maxTries > 0);
   
       if(rc != 0)
         {         {
             PEG_TRACE((TRC_OS_ABSTRACTION, Tracer::LEVEL1,             PEG_TRACE((TRC_OS_ABSTRACTION, Tracer::LEVEL1,
                         "getnameinfo failed: %s",gai_strerror(rc)));                         "getnameinfo failed: %s",gai_strerror(rc)));
             break;  
         }         }
     } while( rc == EAI_AGAIN && --maxTries > 0);  
     return rc;     return rc;
 } }
  


Legend:
Removed from v.1.79.2.1  
changed lines
  Added in v.1.85

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2