diff options
author | Brent Cook <busterb@gmail.com> | 2019-01-18 18:44:47 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2019-01-18 18:44:47 -0600 |
commit | d8c05cedecc846478cb9487da77afd9789dac49c (patch) | |
tree | caf4e093cb273afd0ab284750cc0b73f7f7ff6c4 /patches/tlsexttest.c.patch | |
parent | 3ab11de0f1c015f7283f247b278b4194744dd888 (diff) | |
download | portable-d8c05cedecc846478cb9487da77afd9789dac49c.tar.gz portable-d8c05cedecc846478cb9487da77afd9789dac49c.tar.bz2 portable-d8c05cedecc846478cb9487da77afd9789dac49c.zip |
account for differences in FAIL macros
Diffstat (limited to 'patches/tlsexttest.c.patch')
-rw-r--r-- | patches/tlsexttest.c.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/tlsexttest.c.patch b/patches/tlsexttest.c.patch index 9fc3777..3d8e1c9 100644 --- a/patches/tlsexttest.c.patch +++ b/patches/tlsexttest.c.patch | |||
@@ -1,5 +1,5 @@ | |||
1 | --- tests/tlsexttest.c.orig Fri Jan 18 18:12:03 2019 | 1 | --- tests/tlsexttest.c.orig Fri Jan 18 18:12:03 2019 |
2 | +++ tests/tlsexttest.c Fri Jan 18 18:38:20 2019 | 2 | +++ tests/tlsexttest.c Fri Jan 18 18:44:24 2019 |
3 | @@ -1676,7 +1676,9 @@ | 3 | @@ -1676,7 +1676,9 @@ |
4 | }; | 4 | }; |
5 | 5 | ||
@@ -18,7 +18,7 @@ | |||
18 | + if (dlen != sizeof_tlsext_sni_server) { | 18 | + if (dlen != sizeof_tlsext_sni_server) { |
19 | FAIL("got server SNI with length %zu, " | 19 | FAIL("got server SNI with length %zu, " |
20 | - "want length %zu\n", dlen, sizeof(tlsext_sni_server)); | 20 | - "want length %zu\n", dlen, sizeof(tlsext_sni_server)); |
21 | + "want length %zu\n", dlen, sizeof_tlsext_sni_server) | 21 | + "want length %zu\n", dlen, sizeof_tlsext_sni_server); |
22 | goto err; | 22 | goto err; |
23 | } | 23 | } |
24 | 24 | ||