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

Diff for /src/usr.bin/ssh/Attic/bufaux.h between version 1.13.2.2 and 1.13.2.3

version 1.13.2.2, 2002/04/23 02:13:50 version 1.13.2.3, 2002/05/17 00:03:23
Line 39 
Line 39 
 void    buffer_put_string(Buffer *, const void *, u_int);  void    buffer_put_string(Buffer *, const void *, u_int);
 void    buffer_put_cstring(Buffer *, const char *);  void    buffer_put_cstring(Buffer *, const char *);
   
   #define buffer_skip_string(b) \
       do { u_int l = buffer_get_int(b); buffer_consume(b, l); } while(0)
   
 #endif                          /* BUFAUX_H */  #endif                          /* BUFAUX_H */

Legend:
Removed from v.1.13.2.2  
changed lines
  Added in v.1.13.2.3