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

Diff for /src/usr.bin/ssh/packet.c between version 1.54 and 1.55

version 1.54, 2001/02/28 21:27:47 version 1.55, 2001/03/01 02:45:10
Line 389 
Line 389 
 void  void
 packet_start(int type)  packet_start(int type)
 {  {
         DBG(debug("packet_start[%d]",type));          DBG(debug("packet_start[%d]", type));
         if (use_ssh2_packet_format)          if (use_ssh2_packet_format)
                 packet_start2(type);                  packet_start2(type);
         else          else
Line 942 
Line 942 
         }          }
   
 #ifdef PACKET_DEBUG  #ifdef PACKET_DEBUG
         fprintf(stderr, "read/plain[%d]:\r\n",type);          fprintf(stderr, "read/plain[%d]:\r\n", type);
         buffer_dump(&incoming_packet);          buffer_dump(&incoming_packet);
 #endif  #endif
         return (u_char)type;          return (u_char)type;

Legend:
Removed from v.1.54  
changed lines
  Added in v.1.55