diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-01-22 16:55:22 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-01-22 16:55:22 +0000 |
commit | e25b9a0a7c8609c4a4c01d93e53cb802d378d433 (patch) | |
tree | ff5ebf75e6844300eaba8ab9ee228938148da4fa | |
parent | d7090a3c239e840e1be5907339223431bf2da25f (diff) |
free() -> xfree(); ok markus@
-rw-r--r-- | usr.bin/ssh/key.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/key.c b/usr.bin/ssh/key.c index a2306fed661..8cecce0177f 100644 --- a/usr.bin/ssh/key.c +++ b/usr.bin/ssh/key.c @@ -32,7 +32,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: key.c,v 1.15 2001/01/21 19:05:50 markus Exp $"); +RCSID("$OpenBSD: key.c,v 1.16 2001/01/22 16:55:21 stevesk Exp $"); #include <openssl/evp.h> @@ -258,7 +258,7 @@ write_bignum(FILE *f, BIGNUM *num) return 0; } fprintf(f, " %s", buf); - free(buf); + xfree(buf); return 1; } |