Dead code removal from apps
authorMatt Caswell <matt@openssl.org>
Thu, 12 Mar 2015 14:09:00 +0000 (14:09 +0000)
committerMatt Caswell <matt@openssl.org>
Tue, 17 Mar 2015 14:49:01 +0000 (14:49 +0000)
Some miscellaneous removal of dead code from apps. Also fix an issue with
error handling with pkcs7.

Reviewed-by: Richard Levitte <levitte@openssl.org>
apps/pkcs7.c
apps/s_server.c

index 4d80f8249e10105a8e8da0289eefbdaeca4613e3..643507f216a046d214e372e54653af6862aa7111 100644 (file)
@@ -189,11 +189,11 @@ int MAIN(int argc, char **argv)
     if (infile == NULL)
         BIO_set_fp(in, stdin, BIO_NOCLOSE);
     else {
-        if (BIO_read_filename(in, infile) <= 0)
-            if (in == NULL) {
-                perror(infile);
-                goto end;
-            }
+        if (BIO_read_filename(in, infile) <= 0) {
+            BIO_printf(bio_err, "unable to load input file\n");
+            ERR_print_errors(bio_err);
+            goto end;
+        }
     }
 
     if (informat == FORMAT_ASN1)
index 874b402aac9dd250a7b6a3f3314b245f52a2931e..ec2fe6fd572f34548332693f451ab3dc38b28666 100644 (file)
@@ -303,7 +303,7 @@ static unsigned int psk_server_cb(SSL *ssl, const char *identity,
     }
     if (s_debug)
         BIO_printf(bio_s_out, "identity_len=%d identity=%s\n",
-                   identity ? (int)strlen(identity) : 0, identity);
+                   (int)strlen(identity), identity);
 
     /* here we could lookup the given identity e.g. from a database */
     if (strcmp(identity, psk_identity) != 0) {