summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-12-11 13:34:56 +1100
committerDarren Tucker <dtucker@zip.com.au>2004-12-11 13:34:56 +1100
commit56c9598e5edacbb45d155eebafb3480c6efb7382 (patch)
treea86f2f288341e93987eb05db745b2f35ccb3c1ce
parent0f83d2907cc227b46ebd3e9771534b2c50cbd139 (diff)
- (dtucker) OpenBSD CVS Sync
- markus@cvs.openbsd.org 2004/12/06 16:00:43 [bufaux.c] use 0x00 not \0 since buf[] is a bignum
-rw-r--r--ChangeLog8
-rw-r--r--bufaux.c4
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 4c4ba7c1e..49b1472bc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
120041211
2 - (dtucker) OpenBSD CVS Sync
3 - markus@cvs.openbsd.org 2004/12/06 16:00:43
4 [bufaux.c]
5 use 0x00 not \0 since buf[] is a bignum
6
120041208 720041208
2 - (tim) [configure.ac] Comment some non obvious platforms in the 8 - (tim) [configure.ac] Comment some non obvious platforms in the
3 target-specific case statement. Suggested and OK by dtucker@ 9 target-specific case statement. Suggested and OK by dtucker@
@@ -1927,4 +1933,4 @@
1927 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 1933 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
1928 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 1934 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
1929 1935
1930$Id: ChangeLog,v 1.3600 2004/12/09 02:29:58 tim Exp $ 1936$Id: ChangeLog,v 1.3601 2004/12/11 02:34:56 dtucker Exp $
diff --git a/bufaux.c b/bufaux.c
index cbe77d5ae..4ea6af1b6 100644
--- a/bufaux.c
+++ b/bufaux.c
@@ -37,7 +37,7 @@
37 */ 37 */
38 38
39#include "includes.h" 39#include "includes.h"
40RCSID("$OpenBSD: bufaux.c,v 1.33 2004/10/29 23:56:17 djm Exp $"); 40RCSID("$OpenBSD: bufaux.c,v 1.34 2004/12/06 16:00:43 markus Exp $");
41 41
42#include <openssl/bn.h> 42#include <openssl/bn.h>
43#include "bufaux.h" 43#include "bufaux.h"
@@ -151,7 +151,7 @@ buffer_put_bignum2_ret(Buffer *buffer, const BIGNUM *value)
151 return (-1); 151 return (-1);
152 } 152 }
153 buf = xmalloc(bytes); 153 buf = xmalloc(bytes);
154 buf[0] = '\0'; 154 buf[0] = 0x00;
155 /* Get the value of in binary */ 155 /* Get the value of in binary */
156 oi = BN_bn2bin(value, buf+1); 156 oi = BN_bn2bin(value, buf+1);
157 if (oi != bytes-1) { 157 if (oi != bytes-1) {