Skip to content

Commit

Permalink
Fixes SNMP v3 import not working
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoBiscosi committed May 28, 2024
1 parent cc7d9b4 commit 5a81128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lua/modules/http_lint.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1449,7 +1449,7 @@ local function validateSNMPversion(m)
-- 0 = SNMP v1
-- 1 = SNMP v2c
-- 2 - SNMP v3
return validateChoice({"0", "1", "2"}, m)
return validateChoice({"0", "1", "2", "3"}, m)
end
http_lint.validateSNMPversion = validateSNMPversion

Expand Down

1 comment on commit 5a81128

@MatteoBiscosi
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes issue #8404

Please sign in to comment.