From bc9a7bd5f5aa9a73fc6a58383800c98e2123b118 Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Thu, 11 Jan 1996 04:24:27 +0000 Subject: Add an #ifdef for enabling lower case realm (for use with DCE) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7305 dc483132-0cff-0310-8789-dd5450dbe970 --- src/windows/cns/changelo | 3 +++ src/windows/cns/cns.rc | 4 ++++ 2 files changed, 7 insertions(+) (limited to 'src/windows') diff --git a/src/windows/cns/changelo b/src/windows/cns/changelo index 1dbb30752..96fb078a7 100644 --- a/src/windows/cns/changelo +++ b/src/windows/cns/changelo @@ -1,5 +1,8 @@ Wed Jan 10 23:16:41 1996 Theodore Y. Ts'o + * cns.rc: Add an #ifdef for enabling lower case realm (for use + with DCE). + * cns.c (kwin_command): When obtaining tickets, we make them forwardable by default. XXX This should really a configurable option in the UI. diff --git a/src/windows/cns/cns.rc b/src/windows/cns/cns.rc index 262122734..da70ec98c 100644 --- a/src/windows/cns/cns.rc +++ b/src/windows/cns/cns.rc @@ -65,7 +65,11 @@ BEGIN CONTROL "&Realm", IDD_LOGIN_REALM_TITLE, "STATIC", SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 184, 69, 26, 8 CONTROL "", IDD_LOGIN_NAME, "EDIT", ES_LEFT | ES_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 6, 79, 84, 12 CONTROL "", IDD_LOGIN_PASSWORD, "EDIT", ES_LEFT | ES_AUTOHSCROLL | ES_PASSWORD | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 95, 79, 84, 12 + #ifdef ENABLE_LC_REALMS + CONTROL "", IDD_LOGIN_REALM, "EDIT", ES_LEFT | ES_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 184, 79, 84, 12 + #else CONTROL "", IDD_LOGIN_REALM, "EDIT", ES_LEFT | ES_AUTOHSCROLL | ES_UPPERCASE | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 184, 79, 84, 12 + #endif #endif CONTROL "&Change Password...", IDD_CHANGE_PASSWORD, "BUTTON", BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 6, 96, 74, 14 CONTROL "&Delete", IDD_TICKET_DELETE, "BUTTON", BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 122, 96, 52, 14 -- cgit