[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.15 and 1.15.6.2

version 1.15, 2002/01/11 13:39:36 version 1.15.6.2, 2004/03/04 18:18:15
Line 39 
Line 39 
 void  void
 dispatch_protocol_error(int type, u_int32_t seq, void *ctxt)  dispatch_protocol_error(int type, u_int32_t seq, void *ctxt)
 {  {
         log("dispatch_protocol_error: type %d seq %u", type, seq);          logit("dispatch_protocol_error: type %d seq %u", type, seq);
         if (!compat20)          if (!compat20)
                 fatal("protocol error");                  fatal("protocol error");
         packet_start(SSH2_MSG_UNIMPLEMENTED);          packet_start(SSH2_MSG_UNIMPLEMENTED);
Line 50 
Line 50 
 void  void
 dispatch_protocol_ignore(int type, u_int32_t seq, void *ctxt)  dispatch_protocol_ignore(int type, u_int32_t seq, void *ctxt)
 {  {
         log("dispatch_protocol_ignore: type %d seq %u", type, seq);          logit("dispatch_protocol_ignore: type %d seq %u", type, seq);
 }  }
 void  void
 dispatch_init(dispatch_fn *dflt)  dispatch_init(dispatch_fn *dflt)

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.15.6.2