[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.3 and 1.4

version 1.3, 2015/02/05 12:59:57 version 1.4, 2015/03/24 20:03:44
Line 38 
Line 38 
         const u_char *p = (const u_char *)s;          const u_char *p = (const u_char *)s;
   
         for (i = 0; i < len; i += 16) {          for (i = 0; i < len; i += 16) {
                 fprintf(f, "%.4zd: ", i);                  fprintf(f, "%.4zu: ", i);
                 for (j = i; j < i + 16; j++) {                  for (j = i; j < i + 16; j++) {
                         if (j < len)                          if (j < len)
                                 fprintf(f, "%02x ", p[j]);                                  fprintf(f, "%02x ", p[j]);

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4