From 5ac64dfa968111a84987dac25d21e9437556c638 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Thu, 30 Jul 2015 12:30:15 -0400 Subject: [PATCH] decap --- indra/newview/lluserauth.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/indra/newview/lluserauth.cpp b/indra/newview/lluserauth.cpp index 1ec4286c1..d67c8d9d7 100644 --- a/indra/newview/lluserauth.cpp +++ b/indra/newview/lluserauth.cpp @@ -58,13 +58,13 @@ // to get added to the login cgi script, so we want this to cause an // error if we get compiled for a different platform. #if LL_WINDOWS -static const char* PLATFORM_STRING = "Win"; +static const char* PLATFORM_STRING = "win"; #elif LL_DARWIN -static const char* PLATFORM_STRING = "Mac"; +static const char* PLATFORM_STRING = "mac"; #elif LL_LINUX -static const char* PLATFORM_STRING = "Lnx"; +static const char* PLATFORM_STRING = "lnx"; #elif LL_SOLARIS -static const char* PLATFORM_STRING = "Sol"; +static const char* PLATFORM_STRING = "sol"; #else #error("Unknown platform defined!") #endif