diff options
author | Darren Tucker <dtucker@dtucker.net> | 2021-01-23 08:26:05 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2021-01-23 08:28:37 +0100 |
commit | 95eca1e195a3b41baa1a725c2c5af8a09d885e4b (patch) | |
tree | e6a1da59755841ea948562aa491ac9a5a94d08e5 | |
parent | upstream: Fix long->int for convtime tests here too. Spotted by (diff) | |
download | openssh-95eca1e195a3b41baa1a725c2c5af8a09d885e4b.tar.xz openssh-95eca1e195a3b41baa1a725c2c5af8a09d885e4b.zip |
ifdef new instance of sin6_scope_id
Put inside HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID similar to
existing instance. Should fix error on UnixWare 7.
-rw-r--r-- | addr.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -92,7 +92,9 @@ addr_xaddr_to_sa(const struct xaddr *xa, struct sockaddr *sa, socklen_t *len, in6->sin6_family = AF_INET6; in6->sin6_port = htons(port); memcpy(&in6->sin6_addr, &xa->v6, sizeof(in6->sin6_addr)); +#ifdef HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID in6->sin6_scope_id = xa->scope_id; +#endif break; default: return -1; |