Title: [246654] trunk/Tools
Revision
246654
Author
[email protected]
Date
2019-06-20 15:00:02 -0700 (Thu, 20 Jun 2019)

Log Message

Fix an internal engineering build after r246605
       ​https://bugs.webkit.org/show_bug.cgi?id=197800

* TestWebKitAPI/TCPServer.cpp:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (246653 => 246654)


--- trunk/Tools/ChangeLog	2019-06-20 21:42:50 UTC (rev 246653)
+++ trunk/Tools/ChangeLog	2019-06-20 22:00:02 UTC (rev 246654)
@@ -1,3 +1,10 @@
+2019-06-20  Alex Christensen  <[email protected]>
+
+        Fix an internal engineering build after r246605
+       ​https://bugs.webkit.org/show_bug.cgi?id=197800
+
+        * TestWebKitAPI/TCPServer.cpp:
+
 2019-06-20  Aakash Jain  <[email protected]>
 
         [ews-build] Triggered builds should use same revision as parent build

Modified: trunk/Tools/TestWebKitAPI/TCPServer.cpp (246653 => 246654)


--- trunk/Tools/TestWebKitAPI/TCPServer.cpp	2019-06-20 21:42:50 UTC (rev 246653)
+++ trunk/Tools/TestWebKitAPI/TCPServer.cpp	2019-06-20 22:00:02 UTC (rev 246654)
@@ -298,6 +298,7 @@
     EXPECT_EQ(static_cast<size_t>(bytesWritten), length);
 }
 
+#if HAVE(SSL)
 template<> Vector<uint8_t> TCPServer::read(SSL* ssl)
 {
     uint8_t buffer[1000];
@@ -315,6 +316,7 @@
     auto bytesWritten = SSL_write(ssl, response, length);
     EXPECT_EQ(static_cast<size_t>(bytesWritten), length);
 }
+#endif
 
 void TCPServer::respondWithChallengeThenOK(Socket socket)
 {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to