From 48f83d13157c2f53be30221ea895bc2b615222f2 Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Wed, 12 Jun 2002 00:03:17 +0000 Subject: * cns.c: Do not use krb_get_notification_message() or 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 | 6 ++++++ src/windows/cns/cns.c | 6 ++++++ 2 files changed, 12 insertions(+) (limited to 'src/windows') diff --git a/src/windows/cns/ChangeLog b/src/windows/cns/ChangeLog index 626e52a2ac..2cd2ee87aa 100644 --- a/src/windows/cns/ChangeLog +++ b/src/windows/cns/ChangeLog @@ -1,3 +1,9 @@ +2002-06-11 Danilo Almeida + + * 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 * cns.c: Don't declare pointers or functions FAR any more. diff --git a/src/windows/cns/cns.c b/src/windows/cns/cns.c index 49aaa23016..13404b7366 100644 --- a/src/windows/cns/cns.c +++ b/src/windows/cns/cns.c @@ -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); -- cgit