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

Diff for /src/usr.bin/ssh/Attic/opacket.c between version 1.3 and 1.4

version 1.3, 2015/01/30 01:13:33 version 1.4, 2015/04/27 01:53:37
Line 72 
Line 72 
                 fatal("%s: %s", __func__, ssh_err(r));                  fatal("%s: %s", __func__, ssh_err(r));
 }  }
   
 #ifdef WITH_OPENSSL  #ifdef WITH_SSH1
 void  void
 ssh_packet_put_bignum(struct ssh *ssh, BIGNUM * value)  ssh_packet_put_bignum(struct ssh *ssh, BIGNUM * value)
 {  {
Line 81 
Line 81 
         if ((r = sshpkt_put_bignum1(ssh, value)) != 0)          if ((r = sshpkt_put_bignum1(ssh, value)) != 0)
                 fatal("%s: %s", __func__, ssh_err(r));                  fatal("%s: %s", __func__, ssh_err(r));
 }  }
   #endif
   
   #ifdef WITH_OPENSSL
 void  void
 ssh_packet_put_bignum2(struct ssh *ssh, BIGNUM * value)  ssh_packet_put_bignum2(struct ssh *ssh, BIGNUM * value)
 {  {
Line 144 
Line 146 
         return val;          return val;
 }  }
   
 #ifdef WITH_OPENSSL  #ifdef WITH_SSH1
 void  void
 ssh_packet_get_bignum(struct ssh *ssh, BIGNUM * value)  ssh_packet_get_bignum(struct ssh *ssh, BIGNUM * value)
 {  {
Line 153 
Line 155 
         if ((r = sshpkt_get_bignum1(ssh, value)) != 0)          if ((r = sshpkt_get_bignum1(ssh, value)) != 0)
                 fatal("%s: %s", __func__, ssh_err(r));                  fatal("%s: %s", __func__, ssh_err(r));
 }  }
   #endif
   
   #ifdef WITH_OPENSSL
 void  void
 ssh_packet_get_bignum2(struct ssh *ssh, BIGNUM * value)  ssh_packet_get_bignum2(struct ssh *ssh, BIGNUM * value)
 {  {

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