=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/openssl/dsa.c,v retrieving revision 1.11 retrieving revision 1.12 diff -c -r1.11 -r1.12 *** src/usr.bin/openssl/dsa.c 2018/02/07 05:47:55 1.11 --- src/usr.bin/openssl/dsa.c 2019/02/09 06:27:37 1.12 *************** *** 1,4 **** ! /* $OpenBSD: dsa.c,v 1.11 2018/02/07 05:47:55 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * --- 1,4 ---- ! /* $OpenBSD: dsa.c,v 1.12 2019/02/09 06:27:37 inoguchi Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * *************** *** 58,64 **** #include /* for OPENSSL_NO_DSA */ - #include #include #include #include --- 58,63 ---- *************** *** 205,221 **** }; static void - show_ciphers(const OBJ_NAME *name, void *arg) - { - static int n; - - if (!islower((unsigned char)*name->name)) - return; - - fprintf(stderr, " -%-24s%s", name->name, (++n % 3 ? "" : "\n")); - } - - static void dsa_usage(void) { fprintf(stderr, --- 204,209 ---- *************** *** 227,233 **** fprintf(stderr, "\n"); fprintf(stderr, "Valid ciphername values:\n\n"); ! OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_CIPHER_METH, show_ciphers, NULL); fprintf(stderr, "\n"); } --- 215,221 ---- fprintf(stderr, "\n"); fprintf(stderr, "Valid ciphername values:\n\n"); ! OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_CIPHER_METH, show_cipher, NULL); fprintf(stderr, "\n"); }