diff options
author | Justin Clark-Casey (justincc) | 2009-09-18 22:25:32 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2009-09-18 22:25:32 +0100 |
commit | 967cbde055948f7ccbe1908a296a4d155e646009 (patch) | |
tree | 0c420e07d2bea2685a602b815f22f15437a0d3d1 /OpenSim | |
parent | provide intelligble warning of why load/save iar doesn't work on grid mode, p... (diff) | |
download | opensim-SC_OLD-967cbde055948f7ccbe1908a296a4d155e646009.zip opensim-SC_OLD-967cbde055948f7ccbe1908a296a4d155e646009.tar.gz opensim-SC_OLD-967cbde055948f7ccbe1908a296a4d155e646009.tar.bz2 opensim-SC_OLD-967cbde055948f7ccbe1908a296a4d155e646009.tar.xz |
correct off-by-one error in save iar command handling
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs index dc201e1..196205c 100644 --- a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs | |||
@@ -264,7 +264,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver | |||
264 | /// <param name="cmdparams"></param> | 264 | /// <param name="cmdparams"></param> |
265 | protected void HandleSaveInvConsoleCommand(string module, string[] cmdparams) | 265 | protected void HandleSaveInvConsoleCommand(string module, string[] cmdparams) |
266 | { | 266 | { |
267 | if (cmdparams.Length < 5) | 267 | if (cmdparams.Length < 6) |
268 | { | 268 | { |
269 | m_log.Error( | 269 | m_log.Error( |
270 | "[INVENTORY ARCHIVER]: usage is save iar <first name> <last name> <inventory path> <user password> [<save file path>]"); | 270 | "[INVENTORY ARCHIVER]: usage is save iar <first name> <last name> <inventory path> <user password> [<save file path>]"); |