aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
authorubit2012-08-16 16:13:38 +0200
committerubit2012-08-16 16:13:38 +0200
commitd09fa0d76eae44381b81757c73a516db768e02a1 (patch)
treebac56c76bdf8619a36b5aad473e760e3892a8da5 /OpenSim/Services/Interfaces
parentMerge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork (diff)
parentMerge branch 'master' into careminster (diff)
downloadopensim-SC_OLD-d09fa0d76eae44381b81757c73a516db768e02a1.zip
opensim-SC_OLD-d09fa0d76eae44381b81757c73a516db768e02a1.tar.gz
opensim-SC_OLD-d09fa0d76eae44381b81757c73a516db768e02a1.tar.bz2
opensim-SC_OLD-d09fa0d76eae44381b81757c73a516db768e02a1.tar.xz
Merge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r--OpenSim/Services/Interfaces/IAuthenticationService.cs1
-rw-r--r--OpenSim/Services/Interfaces/IAvatarService.cs3
2 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Services/Interfaces/IAuthenticationService.cs b/OpenSim/Services/Interfaces/IAuthenticationService.cs
index cee8bc0..cdcfad9 100644
--- a/OpenSim/Services/Interfaces/IAuthenticationService.cs
+++ b/OpenSim/Services/Interfaces/IAuthenticationService.cs
@@ -67,6 +67,7 @@ namespace OpenSim.Services.Interfaces
67 // various services. 67 // various services.
68 // 68 //
69 string Authenticate(UUID principalID, string password, int lifetime); 69 string Authenticate(UUID principalID, string password, int lifetime);
70 string Authenticate(UUID principalID, string password, int lifetime, out UUID realID);
70 71
71 ////////////////////////////////////////////////////// 72 //////////////////////////////////////////////////////
72 // Verification 73 // Verification
diff --git a/OpenSim/Services/Interfaces/IAvatarService.cs b/OpenSim/Services/Interfaces/IAvatarService.cs
index 8412c35..0caa521 100644
--- a/OpenSim/Services/Interfaces/IAvatarService.cs
+++ b/OpenSim/Services/Interfaces/IAvatarService.cs
@@ -182,7 +182,8 @@ namespace OpenSim.Services.Interfaces
182 List<AvatarAttachment> attachments = appearance.GetAttachments(); 182 List<AvatarAttachment> attachments = appearance.GetAttachments();
183 foreach (AvatarAttachment attach in attachments) 183 foreach (AvatarAttachment attach in attachments)
184 { 184 {
185 Data["_ap_" + attach.AttachPoint] = attach.ItemID.ToString(); 185 if (attach.ItemID != UUID.Zero)
186 Data["_ap_" + attach.AttachPoint] = attach.ItemID.ToString();
186 } 187 }
187 } 188 }
188 189