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

Diff for /src/usr.bin/ssh/sshbuf-misc.c between version 1.1 and 1.2

version 1.1, 2014/04/30 05:29:56 version 1.2, 2014/06/24 01:13:21
Line 31 
Line 31 
 #include "sshbuf.h"  #include "sshbuf.h"
   
 void  void
 sshbuf_dump(struct sshbuf *buf, FILE *f)  sshbuf_dump_data(const void *s, size_t len, FILE *f)
 {  {
         const u_char *p = sshbuf_ptr(buf);          size_t i, j;
         size_t i, j, len = sshbuf_len(buf);          const u_char *p = (const u_char *)s;
   
         fprintf(f, "buffer %p len = %zu\n", buf, len);  
         for (i = 0; i < len; i += 16) {          for (i = 0; i < len; i += 16) {
                 fprintf(f, "%.4zd: ", i);                  fprintf(f, "%.4zd: ", i);
                 for (j = i; j < i + 16; j++) {                  for (j = i; j < i + 16; j++) {
Line 56 
Line 55 
                 }                  }
                 fprintf(f, "\n");                  fprintf(f, "\n");
         }          }
   }
   
   void
   sshbuf_dump(struct sshbuf *buf, FILE *f)
   {
           fprintf(f, "buffer %p len = %zu\n", buf, sshbuf_len(buf));
           sshbuf_dump_data(sshbuf_ptr(buf), sshbuf_len(buf), f);
 }  }
   
 char *  char *

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2