| Index: net/test/test_server.cc
|
| diff --git a/net/test/test_server.cc b/net/test/test_server.cc
|
| index 1fd20c9fb12d6ea829a9771d5fd89b32d6d24274..91ef1159bcd917dd08538b952dd745169467c25d 100644
|
| --- a/net/test/test_server.cc
|
| +++ b/net/test/test_server.cc
|
| @@ -397,7 +397,7 @@ bool TestServer::ParseServerData(const std::string& server_data) {
|
| LOG(ERROR) << "Could not find port value";
|
| return false;
|
| }
|
| - if ((port <= 0) || (port >= kuint16max)) {
|
| + if ((port <= 0) || (port > kuint16max)) {
|
| LOG(ERROR) << "Invalid port value: " << port;
|
| return false;
|
| }
|
|
|