aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.SQLite
diff options
context:
space:
mode:
authorJustin Clarke Casey2007-12-20 22:42:24 +0000
committerJustin Clarke Casey2007-12-20 22:42:24 +0000
commit30a8e27c40e42d265b72b7371b42dc5dd1e130d4 (patch)
tree09dc4d41ace4f7e162b92d339c59f9646390849c /OpenSim/Framework/Data.SQLite
parentComment out "METHOD BY UUID CALLED" WriteLine as it is (diff)
downloadopensim-SC_OLD-30a8e27c40e42d265b72b7371b42dc5dd1e130d4.zip
opensim-SC_OLD-30a8e27c40e42d265b72b7371b42dc5dd1e130d4.tar.gz
opensim-SC_OLD-30a8e27c40e42d265b72b7371b42dc5dd1e130d4.tar.bz2
opensim-SC_OLD-30a8e27c40e42d265b72b7371b42dc5dd1e130d4.tar.xz
Convert an sqlite user LLUUID I'd missed
Diffstat (limited to 'OpenSim/Framework/Data.SQLite')
-rw-r--r--OpenSim/Framework/Data.SQLite/SQLiteUserData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Data.SQLite/SQLiteUserData.cs b/OpenSim/Framework/Data.SQLite/SQLiteUserData.cs
index 461cd08..811e0fa 100644
--- a/OpenSim/Framework/Data.SQLite/SQLiteUserData.cs
+++ b/OpenSim/Framework/Data.SQLite/SQLiteUserData.cs
@@ -466,7 +466,7 @@ namespace OpenSim.Framework.Data.SQLite
466 466
467 private void fillUserRow(DataRow row, UserProfileData user) 467 private void fillUserRow(DataRow row, UserProfileData user)
468 { 468 {
469 row["UUID"] = user.UUID; 469 row["UUID"] = Util.ToRawUuidString(user.UUID);
470 row["username"] = user.username; 470 row["username"] = user.username;
471 row["surname"] = user.surname; 471 row["surname"] = user.surname;
472 row["passwordHash"] = user.passwordHash; 472 row["passwordHash"] = user.passwordHash;