From 76a347ed32d9e68e3596b4324e088d686598bf9a Mon Sep 17 00:00:00 2001
From: Cinder <cinder@sdf.org>
Date: Wed, 27 Jan 2016 13:42:49 -0700
Subject: [PATCH] Soothe MSVC with more explicit formatting parameters

---
 indra/llcommon/lldate.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/llcommon/lldate.cpp b/indra/llcommon/lldate.cpp
index 8c3f708344..f9199f8811 100755
--- a/indra/llcommon/lldate.cpp
+++ b/indra/llcommon/lldate.cpp
@@ -205,7 +205,7 @@ bool LLDate::fromStream(std::istream& s)
 	
 	// Isn't stdlib nice?
 	s.imbue(std::locale(sPrevLocale));
-	s >> std::get_time(&time, "%FT%T");
+	s >> std::get_time(&time, "%Y-%m-%dT%H:%M:%S");
 	if (s.fail())
 	{
 		return false;
-- 
GitLab