Skip to content

Commit a8e16f7

Browse files
KentarouTakedajorgsowa
authored andcommitted
test(pdo_firebird): Fix the dummy server running on localhost to IPv4 (php#16115)
1 parent 17d2647 commit a8e16f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/pdo_firebird/tests/payload_server.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
$socket = stream_socket_server("tcp://localhost:0", $errno, $errstr);
3+
$socket = stream_socket_server("tcp://127.0.0.1:0", $errno, $errstr);
44
if (!$socket) {
55
echo "Can't start server: $errstr ($errno)\n";
66
exit(1);

0 commit comments

Comments
 (0)