Skip to content

Commit

Permalink
Wording change integrity check failed to hash value mismatch
Browse files Browse the repository at this point in the history
To sound less dreadful the wording:
```
Rebuilding NVTs because integrity check failed
```

changes to

```
Rebuilding all NVTs  because of a hash value mismatch
```
  • Loading branch information
nichtsfrei committed Apr 7, 2021
1 parent 99c2cf4 commit ab3548c
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 @@ -31,6 +31,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Refactor modify_config, allowing multiple simultaneous changes [#1404](https://github.com/greenbone/gvmd/pull/1404)
- Add retry on a deadlock within sql#sql [#1460](https://github.com/greenbone/gvmd/pull/1460)
- Don't require report format plugin for XML report [#1466](https://github.com/greenbone/gvmd/pull/1466)
- Wording of `Rebuilding NVTs because integrity check failed` [1475](https://github.com/greenbone/gvmd/pull/1475)

### Fixed
- Use GMP version with leading zero for feed dirs [#1287](https://github.com/greenbone/gvmd/pull/1287)
Expand Down
2 changes: 1 addition & 1 deletion src/gvmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ update_nvt_cache_retry ()
ret = update_nvt_cache_osp (osp_update_socket);
if (ret == 1)
{
g_message ("Rebuilding NVTs because integrity check failed");
g_message ("Rebuilding all NVTs because of a hash value mismatch");
ret = update_or_rebuild_nvts (0);
if (ret)
g_warning ("%s: rebuild failed", __func__);
Expand Down

0 comments on commit ab3548c

Please sign in to comment.