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

Diff for /src/usr.bin/ssh/dispatch.c between version 1.29 and 1.30

version 1.29, 2017/04/30 23:28:42 version 1.30, 2017/05/30 14:23:52
Line 36 
Line 36 
 #include "ssherr.h"  #include "ssherr.h"
   
 int  int
 dispatch_protocol_error(int type, u_int32_t seq, void *ctx)  dispatch_protocol_error(int type, u_int32_t seq, struct ssh *ssh)
 {  {
         struct ssh *ssh = active_state; /* XXX */  
         int r;          int r;
   
         logit("dispatch_protocol_error: type %d seq %u", type, seq);          logit("dispatch_protocol_error: type %d seq %u", type, seq);
Line 51 
Line 50 
 }  }
   
 int  int
 dispatch_protocol_ignore(int type, u_int32_t seq, void *ssh)  dispatch_protocol_ignore(int type, u_int32_t seq, struct ssh *ssh)
 {  {
         logit("dispatch_protocol_ignore: type %d seq %u", type, seq);          logit("dispatch_protocol_ignore: type %d seq %u", type, seq);
         return 0;          return 0;

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