mirror of
https://github.com/whyvl/wireproxy.git
synced 2025-06-28 08:58:02 +02:00
fix: correct range condition for parsePort
This commit is contained in:
parent
7b7cf2464c
commit
e47479a48d
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue