[mapguide-commits] r9597 - trunk/MgDev/Server/src/Core

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon Sep 2 04:42:24 PDT 2019


Author: jng
Date: 2019-09-02 04:42:24 -0700 (Mon, 02 Sep 2019)
New Revision: 9597

Modified:
   trunk/MgDev/Server/src/Core/SetPwdCommand.cpp
Log:
Fix incorrect error message for setpwd command

Modified: trunk/MgDev/Server/src/Core/SetPwdCommand.cpp
===================================================================
--- trunk/MgDev/Server/src/Core/SetPwdCommand.cpp	2019-08-29 12:42:13 UTC (rev 9596)
+++ trunk/MgDev/Server/src/Core/SetPwdCommand.cpp	2019-09-02 11:42:24 UTC (rev 9597)
@@ -64,7 +64,7 @@
     }
     catch (MgException* e)
     {
-        ACE_DEBUG((LM_ERROR, ACE_TEXT("Unable to load the specified package.\n")));
+        ACE_DEBUG((LM_ERROR, ACE_TEXT("Unable to set the password for the specified user.\n")));
         ACE_DEBUG((LM_ERROR, ACE_TEXT("%W\n"), e->GetStackTrace(m_locale).c_str()));
         SAFE_RELEASE(e);
 
@@ -72,7 +72,7 @@
     }
     catch (...)
     {
-        ACE_DEBUG((LM_ERROR, ACE_TEXT("Unable to load the specified package.\n")));
+        ACE_DEBUG((LM_ERROR, ACE_TEXT("Unable to set the password for the specified user.\n")));
 
         nResult = -1;
     }



More information about the mapguide-commits mailing list