testutil: stanza files are text files, open them as such Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3939)
diff --git a/test/testutil/stanza.c b/test/testutil/stanza.c index 46b1e77..070ff80 100644 --- a/test/testutil/stanza.c +++ b/test/testutil/stanza.c
@@ -20,7 +20,7 @@ TEST_info("Reading %s", testfile); set_test_title(testfile); memset(s, 0, sizeof(*s)); - if (!TEST_ptr(s->fp = BIO_new_file(testfile, "rb"))) + if (!TEST_ptr(s->fp = BIO_new_file(testfile, "r"))) return 0; s->test_file = testfile; return 1;