From: Tom Yu Date: Wed, 12 Jun 2002 00:03:17 +0000 (+0000) Subject: * cns.c: Do not use krb_get_notification_message() or X-Git-Tag: krb5-1.3-alpha1~718 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=48f83d13157c2f53be30221ea895bc2b615222f2;p=krb5.git * 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 --- diff --git a/src/windows/cns/ChangeLog b/src/windows/cns/ChangeLog index 626e52a2a..2cd2ee87a 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 49aaa2301..13404b736 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);