summaryrefslogtreecommitdiff
path: root/key.c
diff options
context:
space:
mode:
Diffstat (limited to 'key.c')
-rw-r--r--key.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/key.c b/key.c
index a2306fed6..8cecce017 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.15 2001/01/21 19:05:50 markus Exp $"); 35RCSID("$OpenBSD: key.c,v 1.16 2001/01/22 16:55:21 stevesk Exp $");
36 36
37#include <openssl/evp.h> 37#include <openssl/evp.h>
38 38
@@ -258,7 +258,7 @@ write_bignum(FILE *f, BIGNUM *num)
258 return 0; 258 return 0;
259 } 259 }
260 fprintf(f, " %s", buf); 260 fprintf(f, " %s", buf);
261 free(buf); 261 xfree(buf);
262 return 1; 262 return 1;
263} 263}
264 264