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

Diff for /pegasus/src/Pegasus/Common/AuthenticationInfoRep.cpp between version 1.30 and 1.31

version 1.30, 2008/12/16 18:55:59 version 1.31, 2010/07/28 14:37:52
Line 33 
Line 33 
 #include <Pegasus/Common/Tracer.h> #include <Pegasus/Common/Tracer.h>
 #include "AuthenticationInfoRep.h" #include "AuthenticationInfoRep.h"
 #include <Pegasus/Common/SSLContext.h> #include <Pegasus/Common/SSLContext.h>
   #include <Pegasus/Common/FileSystem.h>
   #include <Pegasus/Common/Executor.h>
  
 PEGASUS_USING_STD; PEGASUS_USING_STD;
  
Line 57 
Line 59 
     PEG_METHOD_ENTER(     PEG_METHOD_ENTER(
         TRC_AUTHENTICATION, "AuthenticationInfoRep::~AuthenticationInfoRep");         TRC_AUTHENTICATION, "AuthenticationInfoRep::~AuthenticationInfoRep");
  
       // initiate the deletion of _localAuthFilePath.
       if(FileSystem::exists(_localAuthFilePath))
       {
           // No response was received from the local client for the
           // authentication challenge. Hence deleting the file here.
   
           // Use executor, if present.
           if (Executor::detectExecutor() == 0)
           {
               Executor::removeFile(_localAuthFilePath.getCString());
           }
           else
           {
               FileSystem::removeFile(_localAuthFilePath);
           }
       }
   
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
  


Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2