diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2021-10-23 08:13:53 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2021-10-23 08:13:53 +0000 |
commit | fa2dec1268457d1da65ccd771767095d97f8ac70 (patch) | |
tree | 68b31435f7b825eaa562f5c2c48842376ce79e36 | |
parent | 92e1a03686c65795f0c28aa078ff7a4da3482096 (diff) |
Revise regress for tlsext_tick_lifetime_hint changing type.
-rw-r--r-- | regress/lib/libssl/asn1/asn1test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libssl/asn1/asn1test.c b/regress/lib/libssl/asn1/asn1test.c index 18a97138788..9898b91ed34 100644 --- a/regress/lib/libssl/asn1/asn1test.c +++ b/regress/lib/libssl/asn1/asn1test.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asn1test.c,v 1.8 2021/06/30 18:09:46 jsing Exp $ */ +/* $OpenBSD: asn1test.c,v 1.9 2021/10/23 08:13:52 jsing Exp $ */ /* * Copyright (c) 2014, 2016 Joel Sing <jsing@openbsd.org> * @@ -350,7 +350,7 @@ session_cmp(SSL_SESSION *s1, SSL_SESSION *s2) } if (s1->tlsext_tick_lifetime_hint != s2->tlsext_tick_lifetime_hint) { fprintf(stderr, "tlsext_tick_lifetime_hint differs: " - "%li != %li\n", s1->tlsext_tick_lifetime_hint, + "%u != %u\n", s1->tlsext_tick_lifetime_hint, s2->tlsext_tick_lifetime_hint); return (1); } |