=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/openssl/prime.c,v retrieving revision 1.7 retrieving revision 1.8 diff -c -r1.7 -r1.8 *** src/usr.bin/openssl/prime.c 2015/08/22 16:36:05 1.7 --- src/usr.bin/openssl/prime.c 2015/09/12 15:04:06 1.8 *************** *** 1,4 **** ! /* $OpenBSD: prime.c,v 1.7 2015/08/22 16:36:05 jsing Exp $ */ /* ==================================================================== * Copyright (c) 2004 The OpenSSL Project. All rights reserved. * --- 1,4 ---- ! /* $OpenBSD: prime.c,v 1.8 2015/09/12 15:04:06 lteo Exp $ */ /* ==================================================================== * Copyright (c) 2004 The OpenSSL Project. All rights reserved. * *************** *** 177,184 **** } } ! BN_print(bio_out, bn); ! BIO_printf(bio_out, " is %sprime\n", BN_is_prime_ex(bn, prime_config.checks, NULL, NULL) ? "" : "not "); } --- 177,183 ---- } } ! BIO_printf(bio_out, "%s is %sprime\n", prime, BN_is_prime_ex(bn, prime_config.checks, NULL, NULL) ? "" : "not "); }