* cc_mslsa.c:
authorJeffrey Altman <jaltman@secure-endpoints.com>
Fri, 19 Mar 2004 06:56:43 +0000 (06:56 +0000)
committerJeffrey Altman <jaltman@secure-endpoints.com>
Fri, 19 Mar 2004 06:56:43 +0000 (06:56 +0000)
     Add missing return statements in krb5_lcc_start_seq_get()

   * cc-int.h:
     New file - Add prototypes for cc internal functions

   * cc_retr.c - include cc-int.h

ticket: new
target_version: 1.3.3
tags: pullup

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16185 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/ccache/ChangeLog
src/lib/krb5/ccache/cc-int.h [new file with mode: 0644]
src/lib/krb5/ccache/cc_mslsa.c
src/lib/krb5/ccache/cc_retr.c

index c63bad19b47d6a21f8b5410acdf232b349ec22be..eaff17736d62eeab191558f655749c7e2d770950 100644 (file)
@@ -1,3 +1,13 @@
+2004-03-18  Jeffrey Altman <jaltman@mit.edu>
+
+   * cc_mslsa.c:
+     Add missing return statements in krb5_lcc_start_seq_get()
+
+   * cc-int.h:
+     New file - Add prototypes for cc internal functions
+
+   * cc_retr.c - include cc-int.h
+
 2004-03-05  Ken Raeburn  <raeburn@mit.edu>
 
        * ccbase.c: Include k5-thread.h.
diff --git a/src/lib/krb5/ccache/cc-int.h b/src/lib/krb5/ccache/cc-int.h
new file mode 100644 (file)
index 0000000..48ee4fb
--- /dev/null
@@ -0,0 +1,39 @@
+/*
+ * lib/krb5/ccache/file/cc-int.h
+ *
+ * Copyright 1990,1991 by the Massachusetts Institute of Technology.
+ * All Rights Reserved.
+ *
+ * Export of this software from the United States of America may
+ *   require a specific license from the United States Government.
+ *   It is the responsibility of any person or organization contemplating
+ *   export to obtain such a license before exporting.
+ * 
+ * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
+ * distribute this software and its documentation for any purpose and
+ * without fee is hereby granted, provided that the above copyright
+ * notice appear in all copies and that both that copyright notice and
+ * this permission notice appear in supporting documentation, and that
+ * the name of M.I.T. not be used in advertising or publicity pertaining
+ * to distribution of the software without specific, written prior
+ * permission.  Furthermore if you modify this software you must label
+ * your software as modified software and not distribute it in such a
+ * fashion that it might be confused with the original M.I.T. software.
+ * M.I.T. makes no representations about the suitability of
+ * this software for any purpose.  It is provided "as is" without express
+ * or implied warranty.
+ * 
+ *
+ * This file contains constant and function declarations used in the
+ * file-based credential cache routines.
+ */
+
+#ifndef __KRB5_CCACHE_H__
+#define __KRB5_CCACHE_H__
+
+#include "k5-int.h"
+
+krb5_boolean
+krb5int_cc_creds_match_request(krb5_context, krb5_flags whichfields, krb5_creds *mcreds, krb5_creds *creds);
+
+#endif /* __KRB5_CCACHE_H__ */
index 29648b8b38be9d9e90ddef39c31e303313b3dc6c..96558726d158aca07457ba7162dd5e1a70cdb45f 100644 (file)
@@ -53,6 +53,7 @@
 
 #include "k5-int.h"
 #include "com_err.h"
+#include "cc-int.h"
 
 #include <stdio.h>
 #include <errno.h>
@@ -1235,14 +1236,14 @@ krb5_lcc_start_seq_get(krb5_context context, krb5_ccache id, krb5_cc_cursor *cur
     if (!GetMSTGT(data->LogonHandle, data->PackageId, &lcursor->mstgt)) {
         free(lcursor);
         *cursor = 0;
-        KRB5_FCC_INTERNAL;
+        return KRB5_FCC_INTERNAL;
     }
 
     if ( !GetQueryTktCacheResponse(data->LogonHandle, data->PackageId, &lcursor->response) ) {
         LsaFreeReturnBuffer(lcursor->mstgt);
         free(lcursor);
         *cursor = 0;
-        KRB5_FCC_INTERNAL;
+        return KRB5_FCC_INTERNAL;
     }
     lcursor->index = 0;
     *cursor = (krb5_cc_cursor) lcursor;
index 80d31640c08e9c24ab41b4aa76e3f63b963f86f5..5ddb2cc63dc94bcd128137413030ad015b8968fc 100644 (file)
@@ -27,6 +27,7 @@
  */
 
 #include "k5-int.h"
+#include "cc-int.h"
 
 #define KRB5_OK 0