diff options
author | Diva Canto | 2009-09-28 11:17:34 -0700 |
---|---|---|
committer | Diva Canto | 2009-09-28 11:17:34 -0700 |
commit | 276b0a0cbe2cec5ff0e937a2d2eda6b48b5691b2 (patch) | |
tree | 0cac8dceb42fd5222c50b9d6484a096c90c78314 /OpenSim/Server | |
parent | Added Protocol versions back, this time in a range model. (diff) | |
download | opensim-SC_OLD-276b0a0cbe2cec5ff0e937a2d2eda6b48b5691b2.zip opensim-SC_OLD-276b0a0cbe2cec5ff0e937a2d2eda6b48b5691b2.tar.gz opensim-SC_OLD-276b0a0cbe2cec5ff0e937a2d2eda6b48b5691b2.tar.bz2 opensim-SC_OLD-276b0a0cbe2cec5ff0e937a2d2eda6b48b5691b2.tar.xz |
Forgot a return statement.
Diffstat (limited to 'OpenSim/Server')
-rw-r--r-- | OpenSim/Server/Handlers/Grid/GridServerPostHandler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/Grid/GridServerPostHandler.cs b/OpenSim/Server/Handlers/Grid/GridServerPostHandler.cs index 3d72fec..e751365 100644 --- a/OpenSim/Server/Handlers/Grid/GridServerPostHandler.cs +++ b/OpenSim/Server/Handlers/Grid/GridServerPostHandler.cs | |||
@@ -133,7 +133,7 @@ namespace OpenSim.Server.Handlers.Grid | |||
133 | if ((versionNumberMin > ProtocolVersions.ServerProtocolVersionMax && versionNumberMax < ProtocolVersions.ServerProtocolVersionMax)) | 133 | if ((versionNumberMin > ProtocolVersions.ServerProtocolVersionMax && versionNumberMax < ProtocolVersions.ServerProtocolVersionMax)) |
134 | { | 134 | { |
135 | // Can't do, there is no overlap in the acceptable ranges | 135 | // Can't do, there is no overlap in the acceptable ranges |
136 | FailureResult(); | 136 | return FailureResult(); |
137 | } | 137 | } |
138 | 138 | ||
139 | Dictionary<string, object> rinfoData = new Dictionary<string, object>(); | 139 | Dictionary<string, object> rinfoData = new Dictionary<string, object>(); |