diff options
author | Jeff Ames | 2009-01-08 01:13:08 +0000 |
---|---|---|
committer | Jeff Ames | 2009-01-08 01:13:08 +0000 |
commit | b0a59c3bf3b5f0c80bd0cc0d5d3819961357b342 (patch) | |
tree | bc244ddaab8ba1d6716e832ce34fddef29b811af /OpenSim | |
parent | * Add session length to session.report. (diff) | |
download | opensim-SC_OLD-b0a59c3bf3b5f0c80bd0cc0d5d3819961357b342.zip opensim-SC_OLD-b0a59c3bf3b5f0c80bd0cc0d5d3819961357b342.tar.gz opensim-SC_OLD-b0a59c3bf3b5f0c80bd0cc0d5d3819961357b342.tar.bz2 opensim-SC_OLD-b0a59c3bf3b5f0c80bd0cc0d5d3819961357b342.tar.xz |
Update svn properties, minor formatting cleanup.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Data/MSSQL/Resources/012_RegionStore.sql | 10 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Modules/Avatar/Lure/LureModule.cs | 1 | ||||
-rw-r--r-- | OpenSim/Region/UserStatistics/Sessions_Report.cs | 2 |
3 files changed, 7 insertions, 6 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/012_RegionStore.sql b/OpenSim/Data/MSSQL/Resources/012_RegionStore.sql index 8edc823..eef8d90 100644 --- a/OpenSim/Data/MSSQL/Resources/012_RegionStore.sql +++ b/OpenSim/Data/MSSQL/Resources/012_RegionStore.sql | |||
@@ -1,5 +1,5 @@ | |||
1 | BEGIN TRANSACTION | 1 | BEGIN TRANSACTION |
2 | 2 | ||
3 | ALTER TABLE prims ADD LinkNumber integer not null default 0 | 3 | ALTER TABLE prims ADD LinkNumber integer not null default 0 |
4 | 4 | ||
5 | COMMIT | 5 | COMMIT |
diff --git a/OpenSim/Region/Environment/Modules/Avatar/Lure/LureModule.cs b/OpenSim/Region/Environment/Modules/Avatar/Lure/LureModule.cs index 3dd79c6..7228dd6 100644 --- a/OpenSim/Region/Environment/Modules/Avatar/Lure/LureModule.cs +++ b/OpenSim/Region/Environment/Modules/Avatar/Lure/LureModule.cs | |||
@@ -24,6 +24,7 @@ | |||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | |||
27 | using System; | 28 | using System; |
28 | using System.Collections; | 29 | using System.Collections; |
29 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
diff --git a/OpenSim/Region/UserStatistics/Sessions_Report.cs b/OpenSim/Region/UserStatistics/Sessions_Report.cs index 62dc746..ea327be 100644 --- a/OpenSim/Region/UserStatistics/Sessions_Report.cs +++ b/OpenSim/Region/UserStatistics/Sessions_Report.cs | |||
@@ -120,7 +120,7 @@ namespace OpenSim.Region.UserStatistics | |||
120 | 120 | ||
121 | SessionList activeSessionList = new SessionList(); | 121 | SessionList activeSessionList = new SessionList(); |
122 | activeSessionList.user_id=UUID.Random(); | 122 | activeSessionList.user_id=UUID.Random(); |
123 | while(sdr.Read()) | 123 | while (sdr.Read()) |
124 | { | 124 | { |
125 | UUID readUUID = UUID.Parse(sdr["agent_id"].ToString()); | 125 | UUID readUUID = UUID.Parse(sdr["agent_id"].ToString()); |
126 | if (readUUID != userUUID) | 126 | if (readUUID != userUUID) |