summaryrefslogtreecommitdiff
path: root/ssh-keygen.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r--ssh-keygen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 4f976a826..f8c7316dd 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -12,7 +12,7 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: ssh-keygen.c,v 1.88 2001/12/27 18:10:29 markus Exp $"); 15RCSID("$OpenBSD: ssh-keygen.c,v 1.89 2001/12/29 21:56:01 stevesk Exp $");
16 16
17#include <openssl/evp.h> 17#include <openssl/evp.h>
18#include <openssl/pem.h> 18#include <openssl/pem.h>
@@ -187,7 +187,7 @@ buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
187 if (buffer_len(b) < bytes) 187 if (buffer_len(b) < bytes)
188 fatal("buffer_get_bignum_bits: input buffer too small: " 188 fatal("buffer_get_bignum_bits: input buffer too small: "
189 "need %d have %d", bytes, buffer_len(b)); 189 "need %d have %d", bytes, buffer_len(b));
190 BN_bin2bn((u_char *)buffer_ptr(b), bytes, value); 190 BN_bin2bn(buffer_ptr(b), bytes, value);
191 buffer_consume(b, bytes); 191 buffer_consume(b, bytes);
192} 192}
193 193