]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix kfw message box titles
authorKevin Wasserman <kevin.wasserman@painless-security.com>
Sun, 12 Aug 2012 18:35:06 +0000 (14:35 -0400)
committerTom Yu <tlyu@mit.edu>
Wed, 29 Aug 2012 23:17:16 +0000 (19:17 -0400)
"MIT Kerberos", not "Leash32"

Signed-off-by: Kevin Wasserman <kevin.wasserman@painless-security.com>
(cherry picked from commit 12147e84b98422aec0f34abf6be254d11fe8729a)

ticket: 7333
status: resolved

src/windows/leash/Leash.cpp
src/windows/leash/MainFrm.cpp

index 25a17de5df3052032940812054d823e1d81b69d7..6153499f9607e5c88ba76e57941f0ff1ed8369af 100644 (file)
@@ -386,7 +386,7 @@ BOOL CLeashApp::InitInstance()
     // Registry key under which our settings are stored.
     if (m_pszAppName)
         free((void*)m_pszAppName);
-    m_pszAppName = _tcsdup("Leash32");
+    m_pszAppName = _tcsdup("MIT Kerberos");
     SetRegistryKey(_T("MIT"));
 
     LoadStdProfileSettings(); // Load standard INI file options (including MRU)
index 1e22283197546cf768ade9935bc7abea70da7085..aa1700006800c493a7adc76a64b9bb681e9d4500 100644 (file)
@@ -199,7 +199,7 @@ BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
     cs.dwExStyle |= WS_EX_APPWINDOW;
 //    cs.dwExStyle |= WS_EX_OVERLAPPEDWINDOW ;
        cs.lpszClass = _T("LEASH.0WNDCLASS");
-    cs.lpszName = _T("Leash32");
+    cs.lpszName = _T("MIT Kerberos");
 
     CString strText = AfxGetApp()->GetProfileString(CLeashFrame::s_profileHeading,
                                                     CLeashFrame::s_profileRect);