summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/windows/cns/changelo3
-rw-r--r--src/windows/cns/cns.rc4
2 files changed, 7 insertions, 0 deletions
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 <tytso@dcl>
+ * 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,8 +65,12 @@ 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
CONTROL "&Login", IDD_LOGIN, "BUTTON", BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 216, 96, 52, 14