Skip to content

Commit

Permalink
Rename 'Get Ticket' to 'MIT Kerberos: Get Ticket'
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Wasserman <kevin.wasserman@painless-security.com>

(cherry picked from commit 3321554)

ticket: 7284
status: resolved
  • Loading branch information
Kevin Wasserman authored and tlyu committed Aug 27, 2012
1 parent 85956e8 commit f86d599
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/windows/leash/Leash.cpp
Expand Up @@ -243,7 +243,7 @@ BOOL CLeashApp::InitInstance()

ldi.size = LSH_DLGINFO_EX_V1_SZ;
ldi.dlgtype = DLGTYPE_PASSWD;
ldi.title = "Get Ticket";
ldi.title = "MIT Kerberos: Get Ticket";
ldi.username = username;
ldi.realm = realm;
ldi.dlgtype = DLGTYPE_PASSWD;
Expand Down Expand Up @@ -1508,7 +1508,7 @@ CLeashApp::ObtainTicketsViaUserIfNeeded(HWND hWnd)
LSH_DLGINFO_EX ldi;
ldi.size = LSH_DLGINFO_EX_V1_SZ;
ldi.dlgtype = DLGTYPE_PASSWD;
ldi.title = "Get Ticket";
ldi.title = "MIT Kerberos: Get Ticket";
ldi.username = NULL;
ldi.realm = NULL;
ldi.dlgtype = DLGTYPE_PASSWD;
Expand All @@ -1525,7 +1525,7 @@ CLeashApp::ObtainTicketsViaUserIfNeeded(HWND hWnd)
LSH_DLGINFO_EX ldi;
ldi.size = LSH_DLGINFO_EX_V1_SZ;
ldi.dlgtype = DLGTYPE_PASSWD;
ldi.title = "Get Ticket";
ldi.title = "MIT Kerberos: Get Ticket";
ldi.username = NULL;
ldi.realm = NULL;
ldi.dlgtype = DLGTYPE_PASSWD;
Expand Down
2 changes: 1 addition & 1 deletion src/windows/leash/LeashView.cpp
Expand Up @@ -655,7 +655,7 @@ UINT CLeashView::InitTicket(void * hWnd)
ldi.size = sizeof(ldi);
ldi.dlgtype = DLGTYPE_PASSWD;
ldi.title = ldi.in.title;
strcpy(ldi.in.title,"Get Ticket");
strcpy_s(ldi.in.title,"MIT Kerberos: Get Ticket");
ldi.username = ldi.in.username;
strcpy(ldi.in.username,username);
ldi.realm = ldi.in.realm;
Expand Down

0 comments on commit f86d599

Please sign in to comment.