[PATCH] ws2_32/tests: Allow ESP and AH protocols to be missing on Windows

Alex Henrie alexhenrie24 at gmail.com
Mon Jul 27 01:25:46 CDT 2020


Signed-off-by: Alex Henrie <alexhenrie24 at gmail.com>
---
This fixes failures on one of the testbot's XP machines and one of the
testbot's 2003 machines.
---
 dlls/ws2_32/tests/protocol.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ws2_32/tests/protocol.c b/dlls/ws2_32/tests/protocol.c
index de5fe36d45..d6e454a5fb 100644
--- a/dlls/ws2_32/tests/protocol.c
+++ b/dlls/ws2_32/tests/protocol.c
@@ -214,8 +214,8 @@ static const struct protocol protocols[] =
     {  41, { "ipv6", "IPv6" }, TRUE},
     {  43, { "ipv6-route", "IPv6-Route" }, TRUE},
     {  44, { "ipv6-frag", "IPv6-Frag" }, TRUE},
-    {  50, { "esp", "ESP" }},
-    {  51, { "ah", "AH" }},
+    {  50, { "esp", "ESP" }, TRUE},
+    {  51, { "ah", "AH" }, TRUE},
     {  58, { "ipv6-icmp", "IPv6-ICMP" }, TRUE},
     {  59, { "ipv6-nonxt", "IPv6-NoNxt" }, TRUE},
     {  60, { "ipv6-opts", "IPv6-Opts" }, TRUE},
-- 
2.27.0




More information about the wine-devel mailing list