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

Diff for /src/usr.bin/ssh/sshbuf-getput-basic.c between version 1.10 and 1.11

version 1.10, 2019/12/13 19:09:37 version 1.11, 2020/06/05 03:25:35
Line 334 
Line 334 
 int  int
 sshbuf_putb(struct sshbuf *buf, const struct sshbuf *v)  sshbuf_putb(struct sshbuf *buf, const struct sshbuf *v)
 {  {
           if (v == NULL)
                   return 0;
         return sshbuf_put(buf, sshbuf_ptr(v), sshbuf_len(v));          return sshbuf_put(buf, sshbuf_ptr(v), sshbuf_len(v));
 }  }
   

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11