mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Merge remote-tracking branch 'dgoulet/bug21116_030_01'
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
o Minor bugfixes (test):
|
||||
- Fix Raspbian build missing socket errno in test util. Fixes bug 21116.;
|
||||
bugfix on tor-0.2.8.2. Patch by "hein".
|
||||
@@ -5091,7 +5091,8 @@ test_util_socket(void *arg)
|
||||
|
||||
fd1 = tor_open_socket_with_extensions(domain, SOCK_STREAM, 0, 0, 0);
|
||||
int err = tor_socket_errno(fd1);
|
||||
if (fd1 < 0 && err == SOCK_ERRNO(EPROTONOSUPPORT)) {
|
||||
if (fd1 < 0 && (err == SOCK_ERRNO(EPROTONOSUPPORT) ||
|
||||
err == SOCK_ERRNO(EAFNOSUPPORT))) {
|
||||
/* Assume we're on an IPv4-only or IPv6-only system, and give up now. */
|
||||
goto done;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user