import nmap-7.70-7.el8

This commit is contained in:
CentOS Sources 2022-05-18 12:11:28 +00:00 committed by Stepan Oksanichenko
parent 094308f9f1
commit 63e4a7af19
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,12 @@
diff --git a/ncat/ncat_core.c b/ncat/ncat_core.c
index 21eca9e..c45a04e 100644
--- a/ncat/ncat_core.c
+++ b/ncat/ncat_core.c
@@ -287,6 +287,7 @@ int resolve(const char *hostname, unsigned short port,
int result;
flags = 0;
+ flags |= AI_ADDRCONFIG;
if (o.nodns)
flags |= AI_NUMERICHOST;

View File

@ -13,7 +13,7 @@ Name: nmap
Epoch: 2
Version: 7.70
#global prerelease TEST5
Release: 6%{?dist}
Release: 7%{?dist}
# Uses combination of licenses based on GPL license, but with extra modification
# so it got its own license tag rhbz#1055861
License: Nmap
@ -37,6 +37,9 @@ Patch5: ncat_reg_stdin.diff
Patch6: nmap-6.25-displayerror.patch
Patch7: nmap-safe_fd_functions.patch
# https://github.com/nmap/nmap/pull/2247
Patch8: nmap_resolve_config.patch
URL: http://nmap.org/
BuildRequires: gcc-c++
@ -270,6 +273,9 @@ fi
%endif
%changelog
* Wed May 04 2022 Martin Osvald <mosvald@redhat.com> - 2:7.70-7
- Do not listen on ipv6 if it's disabled (#1899824)
* Wed Jul 21 2021 Pavel Zhukov <pzhukov@redhat.com> - 2:7.70-6
- Use safe variants of FD_ functions (#1914733)