Merge pull request #22 from hmenke/parsePort

fix: correct range condition for parsePort
This commit is contained in:
octeep 2022-03-30 14:00:54 +01:00 committed by GitHub
commit 06dfef794f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,7 +63,7 @@ func parsePort(section *ini.Section, keyName string) (int, error) {
return 0, err return 0, err
} }
if port >= 0 && port < 65536 { if !(port >= 0 && port < 65536) {
return 0, errors.New("port should be >= 0 and < 65536") return 0, errors.New("port should be >= 0 and < 65536")
} }