make compile (missing implementation)
authorLove Hörnquist Åstrand <lha@kth.se>
Wed, 25 Mar 2009 23:29:56 +0000 (23:29 +0000)
committerLove Hörnquist Åstrand <lha@kth.se>
Wed, 25 Mar 2009 23:29:56 +0000 (23:29 +0000)
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24951 ec53bebd-3082-4978-b11e-865c3cabbd6b

lib/gssapi/krb5/store_cred.c

index faeee6269a29cc3d5fec2e8d368ac3ed7d6f89aa..7e14e53429a87dafa14afe2e0093bb9222f08af4 100644 (file)
@@ -31,7 +31,7 @@
  * SUCH DAMAGE.
  */
 
-RCSID("$Id$");
+#include "gsskrb5_locl.h"
 
 OM_uint32
 _gsskrb5_store_cred(OM_uint32         *minor_status,
@@ -48,8 +48,6 @@ _gsskrb5_store_cred(OM_uint32         *minor_status,
 
     *minor_status = 0;
 
-    handle = NULL;
-
     if (cred_usage != GSS_C_INITIATE) {
        *minor_status = GSS_KRB5_S_G_BAD_USAGE;
        return GSS_S_FAILURE;
@@ -74,5 +72,5 @@ _gsskrb5_store_cred(OM_uint32         *minor_status,
     /* write out cred to credential cache */
 
     *minor_status = 0;
-    return ret;
+    return GSS_S_FAILURE;
 }