Skip to content

Commit 13caeeb

Browse files
committed
Fix
1 parent a58112b commit 13caeeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dial_wasip1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ func dialAddr(addr net.Addr) (Conn, error) {
6767
return true // done
6868
}
6969
switch syscall.Errno(value) {
70-
case syscall.EINPROGRESS, syscall.EALREADY, syscall.EINTR:
70+
case syscall.EINPROGRESS, syscall.EINTR:
7171
return false // continue
7272
case syscall.EISCONN:
7373
err = nil

0 commit comments

Comments
 (0)