summaryrefslogtreecommitdiff
path: root/key.c
diff options
context:
space:
mode:
Diffstat (limited to 'key.c')
-rw-r--r--key.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/key.c b/key.c
index 0b03e9914..9806a729a 100644
--- a/key.c
+++ b/key.c
@@ -32,7 +32,7 @@
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 */ 33 */
34#include "includes.h" 34#include "includes.h"
35RCSID("$OpenBSD: key.c,v 1.48 2002/07/04 10:41:47 markus Exp $"); 35RCSID("$OpenBSD: key.c,v 1.49 2002/09/09 14:54:14 markus Exp $");
36 36
37#include <openssl/evp.h> 37#include <openssl/evp.h>
38 38
@@ -494,7 +494,8 @@ key_write(Key *key, FILE *f)
494{ 494{
495 int n, success = 0; 495 int n, success = 0;
496 u_int len, bits = 0; 496 u_int len, bits = 0;
497 u_char *blob, *uu; 497 u_char *blob;
498 char *uu;
498 499
499 if (key->type == KEY_RSA1 && key->rsa != NULL) { 500 if (key->type == KEY_RSA1 && key->rsa != NULL) {
500 /* size of modulus 'n' */ 501 /* size of modulus 'n' */