From d278284e74cb0864a1cb33256ecac0c1c4f0a55b Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Fri, 15 Apr 2016 13:56:44 +0100 Subject: Fix some code maintenance issues Various instances of variables being written to, but then never read. Reviewed-by: Richard Levitte --- apps/x509.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/x509.c') diff --git a/apps/x509.c b/apps/x509.c index 6e6ee08ad2..6370116582 100644 --- a/apps/x509.c +++ b/apps/x509.c @@ -763,7 +763,7 @@ int x509_main(int argc, char **argv) BIO_printf(out, "/*\n" " * Subject: %s\n", buf); - m = X509_NAME_oneline(X509_get_issuer_name(x), buf, sizeof buf); + X509_NAME_oneline(X509_get_issuer_name(x), buf, sizeof buf); BIO_printf(out, " * Issuer: %s\n" " */\n", buf); -- cgit v1.2.3