* ccbase.c (krb5_cc_resolve): Incoming cache name is const
authorEzra Peisach <epeisach@mit.edu>
Mon, 15 Sep 1997 19:25:24 +0000 (19:25 +0000)
committerEzra Peisach <epeisach@mit.edu>
Mon, 15 Sep 1997 19:25:24 +0000 (19:25 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10196 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/ccache/ChangeLog
src/lib/krb5/ccache/ccbase.c

index 94e514e3fb30f7f04679bd6636085b61702aa9f1..c2a7c5d310580baf63d32d771e1b96927430530f 100644 (file)
@@ -1,3 +1,7 @@
+Mon Sep 15 15:14:16 1997  Ezra Peisach  <epeisach@mit.edu>
+
+       * ccbase.c (krb5_cc_resolve): Incoming cache name is const.
+
 Thu Nov 21 11:55:16 EST 1996    Richard Basch   <basch@lehman.com>
 
         * Makefile.in: win32 build
index e8bff024d2b5102e2feb897f14b57287f35e4391..4570f8053cd56adbd75e5f97beb9713bb13c72d2 100644 (file)
@@ -75,11 +75,12 @@ krb5_cc_register(context, ops, override)
 KRB5_DLLIMP krb5_error_code KRB5_CALLCONV
 krb5_cc_resolve (context, name, cache)
    krb5_context context;
-   char *name;
+   const char *name;
    krb5_ccache *cache;
 {
     struct krb5_cc_typelist *tlist;
-    char *pfx, *resid, *cp;
+    char *pfx, *cp;
+    const char *resid;
     int pfxlen;
     
     cp = strchr (name, ':');