diff options
author | Damien Miller <djm@mindrot.org> | 1999-11-08 16:15:55 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-11-08 16:15:55 +1100 |
commit | fd7c911f090749774cf1869420523c4811beeeb0 (patch) | |
tree | cd57567ddb3371c0c805a8bd8ace0c66df02fa53 /bufaux.c | |
parent | 5ac5f1ca6b5270e1a755d75120f8217f5850c9b2 (diff) | |
download | openssh-git-fd7c911f090749774cf1869420523c4811beeeb0.tar.gz |
Merged OpenBSD CVS changes that go awayV_1_2_PRE8
Diffstat (limited to 'bufaux.c')
-rw-r--r-- | bufaux.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -16,7 +16,7 @@ Buffers. #include "config.h" #include "includes.h" -RCSID("$Id: bufaux.c,v 1.2 1999/10/28 03:25:17 damien Exp $"); +RCSID("$Id: bufaux.c,v 1.3 1999/11/08 05:15:55 damien Exp $"); #include "ssh.h" @@ -45,7 +45,9 @@ buffer_put_bignum(Buffer *buffer, BIGNUM *value) /* Get the value of in binary */ oi = BN_bn2bin(value, buf); - assert(oi == bin_size); + if (oi != bin_size) + fatal("buffer_put_bignum: BN_bn2bin() failed: oi %d != bin_size %d", + oi, bin_size); /* Store the number of bits in the buffer in two bytes, msb first. */ PUT_16BIT(msg, bits); |