From f59a6b307b949a6f6dd255652788878092223956 Mon Sep 17 00:00:00 2001 From: tb <> Date: Wed, 13 Feb 2019 17:04:17 +0000 Subject: one more error message that should go to stderr --- src/regress/lib/libssl/handshake/handshake_table.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/regress/lib/libssl/handshake/handshake_table.c b/src/regress/lib/libssl/handshake/handshake_table.c index 991c1c1fd0..dc8e8575ee 100644 --- a/src/regress/lib/libssl/handshake/handshake_table.c +++ b/src/regress/lib/libssl/handshake/handshake_table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: handshake_table.c,v 1.9 2019/01/27 03:59:23 tb Exp $ */ +/* $OpenBSD: handshake_table.c,v 1.10 2019/02/13 17:04:17 tb Exp $ */ /* * Copyright (c) 2019 Theo Buehler * @@ -438,7 +438,8 @@ verify_table(enum tls13_message_type table[UINT8_MAX][TLS13_NUM_MESSAGE_TYPES], num_valid = count_handshakes(); if (num_valid != num_found) { - printf("incorrect number of handshakes: want %zu, got %zu.\n", + fprintf(stderr, + "incorrect number of handshakes: want %zu, got %zu.\n", num_valid, num_found); success = 0; } -- cgit v1.2.3-55-g6feb