Remove /* foo.c */ comments
[openssl.git] / crypto / x509v3 / v3prin.c
index cbc357079de746755761a5214bd928da948c69d5..2c8902ee155d523cca1521ca99c9fd5e60ea91e3 100644 (file)
@@ -1,4 +1,3 @@
-/* v3prin.c */
 /*
  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
  * 1999.
@@ -69,17 +68,18 @@ int main(int argc, char **argv)
     FILE *inf;
     int i, count;
     X509_EXTENSION *ext;
+
     X509V3_add_standard_extensions();
     ERR_load_crypto_strings();
     if (!argv[1]) {
         fprintf(stderr, "Usage v3prin cert.pem\n");
         exit(1);
     }
-    if (!(inf = fopen(argv[1], "r"))) {
+    if ((inf = fopen(argv[1], "r")) == NULL) {
         fprintf(stderr, "Can't open %s\n", argv[1]);
         exit(1);
     }
-    if (!(cert = PEM_read_X509(inf, NULL, NULL))) {
+    if ((cert = PEM_read_X509(inf, NULL, NULL)) == NULL) {
         fprintf(stderr, "Can't read certificate %s\n", argv[1]);
         ERR_print_errors_fp(stderr);
         exit(1);