mirror of git://anongit.mindrot.org/openssh.git
more --without-ssh1 fixes
This commit is contained in:
parent
6c2039286f
commit
bbffb23daa
|
@ -74,7 +74,7 @@ ssh_packet_put_raw(struct ssh *ssh, const void *buf, u_int len)
|
||||||
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)
|
||||||
{
|
{
|
||||||
|
@ -83,7 +83,9 @@ ssh_packet_put_bignum(struct ssh *ssh, BIGNUM * value)
|
||||||
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)
|
||||||
{
|
{
|
||||||
|
@ -148,7 +150,7 @@ ssh_packet_get_int64(struct ssh *ssh)
|
||||||
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)
|
||||||
{
|
{
|
||||||
|
@ -157,7 +159,9 @@ ssh_packet_get_bignum(struct ssh *ssh, BIGNUM * value)
|
||||||
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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue