[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.151 and 1.152

version 1.151, 2008/02/22 20:44:02 version 1.152, 2008/05/08 06:59:01
Line 1323 
Line 1323 
         return buffer_get_string(&incoming_packet, length_ptr);          return buffer_get_string(&incoming_packet, length_ptr);
 }  }
   
   void *
   packet_get_string_ptr(u_int *length_ptr)
   {
           return buffer_get_string_ptr(&incoming_packet, length_ptr);
   }
   
 /*  /*
  * Sends a diagnostic message from the server to the client.  This message   * Sends a diagnostic message from the server to the client.  This message
  * can be sent at any time (but not while constructing another message). The   * can be sent at any time (but not while constructing another message). The

Legend:
Removed from v.1.151  
changed lines
  Added in v.1.152