=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/opacket.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- src/usr.bin/ssh/Attic/opacket.c 2015/01/30 01:13:33 1.3 +++ src/usr.bin/ssh/Attic/opacket.c 2015/04/27 01:53:37 1.4 @@ -72,7 +72,7 @@ fatal("%s: %s", __func__, ssh_err(r)); } -#ifdef WITH_OPENSSL +#ifdef WITH_SSH1 void ssh_packet_put_bignum(struct ssh *ssh, BIGNUM * value) { @@ -81,7 +81,9 @@ if ((r = sshpkt_put_bignum1(ssh, value)) != 0) fatal("%s: %s", __func__, ssh_err(r)); } +#endif +#ifdef WITH_OPENSSL void ssh_packet_put_bignum2(struct ssh *ssh, BIGNUM * value) { @@ -144,7 +146,7 @@ return val; } -#ifdef WITH_OPENSSL +#ifdef WITH_SSH1 void ssh_packet_get_bignum(struct ssh *ssh, BIGNUM * value) { @@ -153,7 +155,9 @@ if ((r = sshpkt_get_bignum1(ssh, value)) != 0) fatal("%s: %s", __func__, ssh_err(r)); } +#endif +#ifdef WITH_OPENSSL void ssh_packet_get_bignum2(struct ssh *ssh, BIGNUM * value) {