diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-02-24 21:07:04 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-02-24 21:07:04 +0000 |
commit | 00b9a28e32cc75879d5c314838cef2b44c0bced3 (patch) | |
tree | 3addc7e99437f5f970c1b101f7a9e3e0080c3c48 | |
parent | f7a7dae42c2431846ad8b9590474e76d24697247 (diff) |
Remove accidentally committed debug code.
-rw-r--r-- | lib/libcrypto/dsa/dsa_ameth.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libcrypto/dsa/dsa_ameth.c b/lib/libcrypto/dsa/dsa_ameth.c index eb4d5d2dcd4..07773ad44f6 100644 --- a/lib/libcrypto/dsa/dsa_ameth.c +++ b/lib/libcrypto/dsa/dsa_ameth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dsa_ameth.c,v 1.33 2022/02/24 08:31:11 tb Exp $ */ +/* $OpenBSD: dsa_ameth.c,v 1.34 2022/02/24 21:07:03 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006. */ @@ -487,8 +487,6 @@ old_dsa_priv_decode(EVP_PKEY *pkey, const unsigned char **pder, int derlen) return 0; } - DSA_print_fp(stdout, dsa, 0); - /* FIPS 186-3 allows only three different sizes for q. */ qbits = BN_num_bits(dsa->q); if (qbits != 160 && qbits != 224 && qbits != 256) { |