(file) Return to Parent.c CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Executor

Diff for /pegasus/src/Executor/Parent.c between version 1.8 and 1.9

version 1.8, 2007/11/28 12:44:18 version 1.9, 2008/01/04 19:11:37
Line 684 
Line 684 
     }     }
     while (0);     while (0);
  
     if (status != 0)      Log(LL_TRACE, "Basic authentication attempt: username = %s, "
     {          "successful = %s",
         Log(LL_WARNING, "Basic authentication failed for username %s",          request.username, status == 0 ? "TRUE" : "FALSE" );
             request.username);  
     }  
     else  
     {  
         Log(LL_TRACE, "Basic authentication succeeded for username %s",  
             request.username);  
     }  
  
     /* Send response message. */     /* Send response message. */
  
Line 758 
Line 751 
  
 #endif /* !PEGASUS_PAM_AUTHENTICATION */ #endif /* !PEGASUS_PAM_AUTHENTICATION */
  
     if (status != 0)  
         Log(LL_WARNING, "User validation failed on %s", request.username);  
   
     /* Send response message. */     /* Send response message. */
  
     response.status = status;     response.status = status;
Line 796 
Line 786 
  
     /* Send response message. */     /* Send response message. */
  
     if (response.status != 0)      if (response.status == 0)
     {  
         Log(LL_WARNING, "Local authentication failed for user \"%s\"",  
             request.user);  
     }  
     else  
     {     {
         Strlcpy(response.challenge, challenge, sizeof(response.challenge));         Strlcpy(response.challenge, challenge, sizeof(response.challenge));
     }     }
Line 835 
Line 820 
  
     status = FinishLocalAuthentication(request.challenge, request.response);     status = FinishLocalAuthentication(request.challenge, request.response);
  
     /* Log result. */  
   
     if (status != 0)  
     {  
         Log(LL_WARNING, "Local authentication failed");  
     }  
   
     /* Send response. */     /* Send response. */
  
     response.status = status;     response.status = status;


Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2