Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[20.08] Fix IPPROTO_IP string in nasl_init.c #552

Merged
merged 2 commits into from
Jul 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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