diff --git a/indra/llprimitive/llprimitive.cpp b/indra/llprimitive/llprimitive.cpp
old mode 100644
new mode 100755
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index fcb774f0e5c1e8936a4750f2d399e8bec6c0af4d..8ea0fb7c509f67e06a2f929f1dd17ec0feb93a04 100755
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -4004,7 +4004,7 @@ void LLVOAvatar::updateVisibility()
 			LLNameValue* firstname = getNVPair("FirstName");
 			if (firstname)
 			{
-				llinfos << avString() << " updating visiblity" << llendl;
+				llinfos << avString() << " updating visibility" << llendl;
 			}
 			else
 			{
@@ -4216,7 +4216,7 @@ U32 LLVOAvatar::renderSkinned(EAvatarRenderPass pass)
 		LLNameValue* firstname = getNVPair("FirstName");
 		if (firstname)
 		{
-			llinfos << "Avatar " << firstname->getString() << " in render" << llendl;
+			llinfos << avString() << " in render" << llendl;
 		}
 		else
 		{
@@ -7231,8 +7231,9 @@ void LLVOAvatar::processAvatarAppearance( LLMessageSystem* mesgsys )
 	}
 
 
-	// runway - is this right? Will be called every time *except* the first.
-	// FIXME - trying toggle
+	// runway - was
+	// if (!is_first_appearance_message )
+	// which means it would be called on second appearance message - probably wrong.
 	if (is_first_appearance_message )
 	{
 		onFirstTEMessageReceived();
diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp
index fcdb4e3c632bc1106ec7a37e2f1226d640fde648..e0af6c3995d19381c6207d0ef9b94832e6204746 100755
--- a/indra/newview/llvoavatarself.cpp
+++ b/indra/newview/llvoavatarself.cpp
@@ -2339,7 +2339,7 @@ void LLVOAvatarSelf::outputRezDiagnostics() const
 void LLVOAvatarSelf::outputRezTiming(const std::string& msg) const
 {
 	llinfos
-		<< " Avatar '" << getFullname() << "' "
+		<< avString()
 		<< llformat("%s. Time from avatar creation: %.2f", msg.c_str(), mDebugSelfLoadTimer.getElapsedTimeF32())
 		<< llendl;
 }