summaryrefslogtreecommitdiffstats
path: root/src/windows
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1996-01-11 04:24:27 +0000
committerTheodore Tso <tytso@mit.edu>1996-01-11 04:24:27 +0000
commitbc9a7bd5f5aa9a73fc6a58383800c98e2123b118 (patch)
tree1bc1f63ef92795364045e90240ec6a39b05512df /src/windows
parent4a1d37b9913d9aaf06e2b6a697737572f5f3229d (diff)
downloadkrb5-bc9a7bd5f5aa9a73fc6a58383800c98e2123b118.tar.gz
krb5-bc9a7bd5f5aa9a73fc6a58383800c98e2123b118.tar.xz
krb5-bc9a7bd5f5aa9a73fc6a58383800c98e2123b118.zip
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
Diffstat (limited to 'src/windows')
-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