summaryrefslogtreecommitdiff
path: root/net-analyzer/nmap/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-02-05 18:44:56 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-02-05 18:44:56 +0000
commit29aabba0ea759c6a2864ff5631735b67ee38e5e0 (patch)
treeab466b4dfa7abecb401b2f8039d08af4689306bb /net-analyzer/nmap/files
parentd42200bec37eef2a7478d88988ff00addd0a9202 (diff)
gentoo resync : 05.02.2020
Diffstat (limited to 'net-analyzer/nmap/files')
-rw-r--r--net-analyzer/nmap/files/nmap-9999-constify-continued.patch22
-rw-r--r--net-analyzer/nmap/files/nmap-9999-netutil-else.patch9
2 files changed, 0 insertions, 31 deletions
diff --git a/net-analyzer/nmap/files/nmap-9999-constify-continued.patch b/net-analyzer/nmap/files/nmap-9999-constify-continued.patch
deleted file mode 100644
index 04738f408231..000000000000
--- a/net-analyzer/nmap/files/nmap-9999-constify-continued.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- a/libnetutil/EthernetHeader.cc
-+++ b/libnetutil/EthernetHeader.cc
-@@ -284,7 +284,7 @@ int EthernetHeader::setEtherType(u16 val){
-
-
- /** Returns destination port in HOST byte order */
--u16 EthernetHeader::getEtherType() const {
-+const u16 EthernetHeader::getEtherType() const {
- return ntohs(this->h.eth_type);
- } /* End of getEtherType() */
-
---- a/scan_engine.cc
-+++ b/scan_engine.cc
-@@ -166,7 +166,7 @@ extern "C" int g_has_npcap_loopback;
- #endif
-
-
--int HssPredicate::operator() (const HostScanStats *lhs, const HostScanStats *rhs) const {
-+const int HssPredicate::operator() (const HostScanStats *lhs, const HostScanStats *rhs) const {
- const struct sockaddr_storage *lss, *rss;
- lss = (lhs) ? lhs->target->TargetSockAddr() : ss;
- rss = (rhs) ? rhs->target->TargetSockAddr() : ss;
diff --git a/net-analyzer/nmap/files/nmap-9999-netutil-else.patch b/net-analyzer/nmap/files/nmap-9999-netutil-else.patch
index a96a04b7a87f..c9b3350d9865 100644
--- a/net-analyzer/nmap/files/nmap-9999-netutil-else.patch
+++ b/net-analyzer/nmap/files/nmap-9999-netutil-else.patch
@@ -9,12 +9,3 @@
/* TCP Flags */
p = tflags;
-@@ -2633,7 +2633,7 @@ const char *ippackethdrinfo(const u8 *packet, u32 len, int detail) {
- (tcpoptinfo[0]!='\0') ? " " : "",
- tcpoptinfo, ipinfo);
- }
-- } else{
-+ } else {
- /* If the packet does not fall into any other category, then we have a
- really screwed-up packet. */
- /* This ought to be unreachable; if static analysis flags it as such, delete it. */