remove assert
authorJohn Kohl <jtkohl@mit.edu>
Fri, 11 May 1990 09:43:04 +0000 (09:43 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Fri, 11 May 1990 09:43:04 +0000 (09:43 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@834 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/ccache/ccdefault.c

index b3f9efc4ef4fa661d1d64f080480c533e50ce6b4..8517fdeaa445e51aff2072369c3e8c0ea3c7ad4e 100644 (file)
@@ -5,7 +5,7 @@
  * Copyright 1990 by the Massachusetts Institute of Technology.
  *
  * For copying and distribution information, please see the file
- * <krb5/mit-copyright.h>.
+ * <krb5/copyright.h>.
  *
  * Find default credential cache
  */
@@ -15,9 +15,6 @@ static char rcsid_default_c[] =
 "$Id$";
 #endif /* !lint & !SABER */
 
-#include <stdio.h>
-#include <assert.h>
-
 #include <krb5/copyright.h>
 #include <krb5/krb5.h>
 
@@ -25,8 +22,11 @@ static krb5_ccache default_ccache;
 
 krb5_ccache krb5_cc_default()
 {
-    if (default_ccache == 0) 
-       assert(krb5_cc_resolve (krb5_cc_default_name(), &default_ccache) == 0); /* XXX error handling? */
+    if (default_ccache == 0)
+       krb5_cc_resolve(krb5_cc_default_name(), &default_ccache);
+
+    /* ignore errors; any error will be fatal in future derefs by the
+       caller. */
 
     return default_ccache;
 }