diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | key.c | 4 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ | |||
1 | 20011010 | ||
2 | - (djm) OpenBSD CVS Sync | ||
3 | - markus@cvs.openbsd.org 2001/10/04 14:34:16 | ||
4 | [key.c] | ||
5 | call OPENSSL_free() for memory allocated by openssl; from chombier@mac.com | ||
6 | |||
1 | 20011007 | 7 | 20011007 |
2 | - (bal) ssh-copy-id corrected permissions for .ssh/ and authorized_keys. | 8 | - (bal) ssh-copy-id corrected permissions for .ssh/ and authorized_keys. |
3 | Prompted by Matthew Vernon <matthew@sel.cam.ac.uk> | 9 | Prompted by Matthew Vernon <matthew@sel.cam.ac.uk> |
@@ -6642,4 +6648,4 @@ | |||
6642 | - Wrote replacements for strlcpy and mkdtemp | 6648 | - Wrote replacements for strlcpy and mkdtemp |
6643 | - Released 1.0pre1 | 6649 | - Released 1.0pre1 |
6644 | 6650 | ||
6645 | $Id: ChangeLog,v 1.1584 2001/10/08 01:54:24 mouring Exp $ | 6651 | $Id: ChangeLog,v 1.1585 2001/10/10 05:00:49 djm Exp $ |
@@ -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" |
35 | RCSID("$OpenBSD: key.c,v 1.32 2001/09/19 13:23:29 markus Exp $"); | 35 | RCSID("$OpenBSD: key.c,v 1.33 2001/10/04 14:34:16 markus Exp $"); |
36 | 36 | ||
37 | #include <openssl/evp.h> | 37 | #include <openssl/evp.h> |
38 | 38 | ||
@@ -354,7 +354,7 @@ write_bignum(FILE *f, BIGNUM *num) | |||
354 | return 0; | 354 | return 0; |
355 | } | 355 | } |
356 | fprintf(f, " %s", buf); | 356 | fprintf(f, " %s", buf); |
357 | xfree(buf); | 357 | OPENSSL_free(buf); |
358 | return 1; | 358 | return 1; |
359 | } | 359 | } |
360 | 360 | ||