Remove unnecessary calls to krb5_init_ets
authorRichard Basch <probe@mit.edu>
Thu, 20 Feb 1997 06:37:53 +0000 (06:37 +0000)
committerRichard Basch <probe@mit.edu>
Thu, 20 Feb 1997 06:37:53 +0000 (06:37 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9933 dc483132-0cff-0310-8789-dd5450dbe970

src/windows/cns/cns.c
src/windows/wintel/telnet.c

index 10a491a73ae97ad112bd27afa4a7d0462720707e..205f9332521d153e5e19a3747b9a4ff5dd602f8f 100644 (file)
@@ -1738,10 +1738,8 @@ init_instance(HINSTANCE hinstance, int ncmdshow)
     krb5_error_code code;
 
     code = krb5_init_context(&k5_context);
-    if (!code) {
-      krb5_init_ets(k5_context);
+    if (!code)
       code = k5_init_ccache(&k5_ccache);
-    }
     if (code) {
       com_err(NULL, code, "while initializing program");
       return FALSE;
index 32f4118125945a6800f6a49566c9028953a3d135..1182fbcff7cedf2fc109c768452e45d93cf07fac 100644 (file)
@@ -221,7 +221,6 @@ InitInstance(HANDLE hInstance, int nCmdShow)
 
 #ifdef KRB5
   krb5_init_context(&k5_context);
-  krb5_init_ets(k5_context);
 #endif
 
   return (TRUE);