Skip to content

Commit

Permalink
Merge pull request #552 from cfi-gb/fix_ipproto_ip_string
Browse files Browse the repository at this point in the history
[20.08] Fix IPPROTO_IP string in nasl_init.c
  • Loading branch information
ArnoStiefvater committed Jul 14, 2020
2 parents a2d56c1 + 8ef3333 commit 98612ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Various updates to the nasl_perror() error texts. [#539](https://github.com/greenbone/openvas/pull/542)
- Fix icmp checksum calculation in openvas-nasl. [#543](https://github.com/greenbone/openvas/pull/543)
- Fix ipv6 flow label in nasl_packet_forgery_v6() for openvas-nasl. [#545](https://github.com/greenbone/openvas/pull/545)
- Fix name of NASL internal IPPROTO_IP variable. [#552](https://github.com/greenbone/openvas/pull/552)

### Removed
- Removed "network scan" mode. This includes removal of NASL API methods "scan_phase()" and "network_targets()". Sending a "network_mode=yes" in a scanner configuration will have no effect anymore. [#493](https://github.com/greenbone/openvas/pull/493)
Expand Down
2 changes: 1 addition & 1 deletion nasl/nasl_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ static struct
{"IPPROTO_TCP", IPPROTO_TCP},
{"IPPROTO_UDP", IPPROTO_UDP},
{"IPPROTO_ICMP", IPPROTO_ICMP},
{"IPROTO_IP", IPPROTO_IP},
{"IPPROTO_IP", IPPROTO_IP},
{"IPPROTO_IGMP", IPPROTO_IGMP},
{"ENCAPS_AUTO", OPENVAS_ENCAPS_AUTO},
{"ENCAPS_IP", OPENVAS_ENCAPS_IP},
Expand Down

0 comments on commit 98612ff

Please sign in to comment.