summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-04-01 11:32:49 +0100
committerHugo Landau <hlandau@openssl.org>2024-04-19 09:31:06 +0100
commit8dbccd330f76b27d1bdc62cf3ee26dec6fba33e9 (patch)
tree6bcefd7845b226142c5a4a703976ebce69d932f9
parent723896e47fe586360f9e728d9d1197c339d8ab81 (diff)
Fix nit
Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23487)
-rw-r--r--test/radix/quic_bindings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/radix/quic_bindings.c b/test/radix/quic_bindings.c
index f2eb1474cf..e752cd7a7a 100644
--- a/test/radix/quic_bindings.c
+++ b/test/radix/quic_bindings.c
@@ -187,7 +187,7 @@ static const char *stream_state_to_str(int state)
case SSL_STREAM_STATE_OK:
return "OK";
case SSL_STREAM_STATE_WRONG_DIR:
- return "wrong dir";
+ return "wrong-dir";
case SSL_STREAM_STATE_FINISHED:
return "finished";
case SSL_STREAM_STATE_RESET_LOCAL: