Commit 0cb923d4ba for openssl.org

commit 0cb923d4ba8c910f9e5f09bd815c1ee8721ee624
Author: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>
Date:   Tue Jul 7 12:50:01 2026 +0200

    Fix doubled semicolons as statement terminations

    Reviewed-by: Matt Caswell <matt@openssl.foundation>
    Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
    Reviewed-by: Paul Dale <paul.dale@oracle.com>
    MergeDate: Wed Jul  8 18:03:29 2026
    (Merged from https://github.com/openssl/openssl/pull/31877)

diff --git a/apps/req.c b/apps/req.c
index 695fd049dd..83ac38ef86 100644
--- a/apps/req.c
+++ b/apps/req.c
@@ -1254,25 +1254,21 @@ static int prompt_info(X509_REQ *req,

                 if (!join(buf, sizeof(buf), type, "_value", "Name"))
                     goto err;
-                ;
                 value = app_conf_try_string(req_conf, attr_sect, buf);

                 if (!join(buf, sizeof(buf), type, "_min", "Name"))
                     goto err;
-                ;
                 if (!app_conf_try_number(req_conf, attr_sect, buf, &n_min))
                     n_min = -1;

                 if (!join(buf, sizeof(buf), type, "_max", "Name"))
                     goto err;
-                ;
                 if (!app_conf_try_number(req_conf, attr_sect, buf, &n_max))
                     n_max = -1;
                 if (!add_attribute_object(req,
                         v->value, def, value, nid, n_min,
                         n_max, chtype))
                     goto err;
-                ;
             }
         }
     } else {