diff options
author | 2015-10-01 06:31:21 +0000 | |
---|---|---|
committer | 2015-10-01 06:31:21 +0000 | |
commit | 881e4aa87ad16c377a3e110f51bb3c4a5c19fddf (patch) | |
tree | 2da1c7bf5f945f6101d368ad6efaab82345df936 | |
parent | Eliminate the last of the LINTEDn and PRINTFLIKEn comments. In one (diff) | |
download | wireguard-openbsd-881e4aa87ad16c377a3e110f51bb3c4a5c19fddf.tar.xz wireguard-openbsd-881e4aa87ad16c377a3e110f51bb3c4a5c19fddf.zip |
Another s/M_ASN1_INTEGER_free/ASN1_INTEGER_free/.
Found the hard way by Mark Patruck.
-rw-r--r-- | usr.bin/openssl/x509.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/openssl/x509.c b/usr.bin/openssl/x509.c index 8699e9eef08..ec592c29d7b 100644 --- a/usr.bin/openssl/x509.c +++ b/usr.bin/openssl/x509.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509.c,v 1.8 2015/09/21 13:32:55 bcook Exp $ */ +/* $OpenBSD: x509.c,v 1.9 2015/10/01 06:31:21 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -295,7 +295,7 @@ x509_main(int argc, char **argv) } else if (strcmp(*argv, "-set_serial") == 0) { if (--argc < 1) goto bad; - M_ASN1_INTEGER_free(sno); + ASN1_INTEGER_free(sno); if (!(sno = s2i_ASN1_INTEGER(NULL, *(++argv)))) goto bad; } else if (strcmp(*argv, "-addtrust") == 0) { |