[openssl-commits] [openssl] master update

Andy Polyakov appro at openssl.org
Wed Jul 25 08:39:25 UTC 2018


The branch master has been updated
       via  d6b50b6e2ebc0c198877b5c56ae0a54cb9036088 (commit)
      from  eb807d5383fd228a5c4cf9afc2fec487e0d22cee (commit)


- Log -----------------------------------------------------------------
commit d6b50b6e2ebc0c198877b5c56ae0a54cb9036088
Author: Andy Polyakov <appro at openssl.org>
Date:   Mon Jul 23 22:26:30 2018 +0200

    apps/dsaparam.c: make dsaparam -C output strict-warnings-friendly.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 apps/dsaparam.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/dsaparam.c b/apps/dsaparam.c
index ca072bb..9d8af9e 100644
--- a/apps/dsaparam.c
+++ b/apps/dsaparam.c
@@ -179,7 +179,7 @@ int dsaparam_main(int argc, char **argv)
 
         data = app_malloc(len + 20, "BN space");
 
-        BIO_printf(bio_out, "DSA *get_dsa%d()\n{\n", bits_p);
+        BIO_printf(bio_out, "static DSA *get_dsa%d(void)\n{\n", bits_p);
         print_bignum_var(bio_out, p, "dsap", bits_p, data);
         print_bignum_var(bio_out, q, "dsaq", bits_p, data);
         print_bignum_var(bio_out, g, "dsag", bits_p, data);


More information about the openssl-commits mailing list