[BACK]Return to auth.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/auth.c between version 1.66 and 1.67

version 1.66, 2006/03/25 13:17:01 version 1.67, 2006/03/30 11:40:21
Line 45 
Line 45 
 #include "misc.h"  #include "misc.h"
 #include "bufaux.h"  #include "bufaux.h"
 #include "packet.h"  #include "packet.h"
   #include "monitor_wrap.h"
   
 /* import */  /* import */
 extern ServerOptions options;  extern ServerOptions options;
   extern int use_privsep;
   
 /* Debugging messages */  /* Debugging messages */
 Buffer auth_debug;  Buffer auth_debug;
Line 165 
Line 167 
 {  {
         void (*authlog) (const char *fmt,...) = verbose;          void (*authlog) (const char *fmt,...) = verbose;
         char *authmsg;          char *authmsg;
   
           if (use_privsep && !mm_is_monitor() && !authctxt->postponed)
                   return;
   
         /* Raise logging level */          /* Raise logging level */
         if (authenticated == 1 ||          if (authenticated == 1 ||

Legend:
Removed from v.1.66  
changed lines
  Added in v.1.67