Add an #ifdef for enabling lower case realm (for use with DCE)
authorTheodore Tso <tytso@mit.edu>
Thu, 11 Jan 1996 04:24:27 +0000 (04:24 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 11 Jan 1996 04:24:27 +0000 (04:24 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7305 dc483132-0cff-0310-8789-dd5450dbe970

src/windows/cns/changelo
src/windows/cns/cns.rc

index 1dbb30752e46a9644c6d54aced025b7357ec8855..96fb078a7e25d764e8322ee474f9503753d94a5f 100644 (file)
@@ -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.
index 2621227344555820f5e51a96184bd04438bfa542..da70ec98c0fa1fd0d57a75f5f7a30f2cd0aa5bbb 100644 (file)
@@ -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