* cns.c: Do not use krb_get_notification_message() or
authorTom Yu <tlyu@mit.edu>
Wed, 12 Jun 2002 00:03:17 +0000 (00:03 +0000)
committerTom Yu <tlyu@mit.edu>
Wed, 12 Jun 2002 00:03:17 +0000 (00:03 +0000)
krb5_get_notification_message().
[pullup from 1-2-2-branch]

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14495 dc483132-0cff-0310-8789-dd5450dbe970

src/windows/cns/ChangeLog
src/windows/cns/cns.c

index 626e52a2ac1d4b9fdcdf0f7ef15bcb46837999de..2cd2ee87aa65b565fc3e93c007681a766721c3d1 100644 (file)
@@ -1,3 +1,9 @@
+2002-06-11  Danilo Almeida  <dalmeida@mit.edu>
+
+       * cns.c: Do not use krb_get_notification_message() or
+       krb5_get_notification_message().
+       [pullup from 1-2-2-branch]
+
 2001-10-03  Ken Raeburn  <raeburn@mit.edu>
 
        * cns.c: Don't declare pointers or functions FAR any more.
index 49aaa23016d04e609384ef4a060899b983481786..13404b73664c9165ebc032b2946f2525b7ad68b2 100644 (file)
@@ -41,7 +41,9 @@ HFONT hfontdialog = NULL;            /* Font in which the dialog is drawn. */
 static HFONT hfonticon = NULL;        /* Font for icon label */
 HINSTANCE hinstance;
 static int dlgncmdshow;                       /* ncmdshow from WinMain */
+#if 0
 static UINT wm_kerberos_changed;       /* message for cache changing */
+#endif
 static int action;                    /* After login actions */
 static UINT kwin_timer_id;            /* Timer being used for update */
 BOOL alert;                           /* Actions on ticket expiration */
@@ -1491,12 +1493,14 @@ kwin_wnd_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
 {
   int n;
 
+#if 0
   if (message == wm_kerberos_changed) {       /* Message from the ccache */
     n = ticket_init_list(GetDlgItem(hwnd, IDD_TICKET_LIST));
     EnableWindow(GetDlgItem(hwnd, IDD_TICKET_DELETE), n > 0);
 
     return 0;
   }
+#endif
 
   switch (message) {
     HANDLE_MSG(hwnd, WM_GETMINMAXINFO, kwin_getminmaxinfo);
@@ -1601,12 +1605,14 @@ init_application(HINSTANCE hinstance)
 {
   BOOL rc;
 
+#if 0
 #ifdef KRB4
   wm_kerberos_changed = krb_get_notification_message();
 #endif
 
 #ifdef KRB5
   wm_kerberos_changed = krb5_get_notification_message();
+#endif
 #endif
 
   rc = kwin_init(hinstance);