summaryrefslogtreecommitdiffstats
path: root/src/windows/identity/plugins/krb4/krb4plugin.c
diff options
context:
space:
mode:
authorJeffrey Altman <jaltman@secure-endpoints.com>2006-04-02 04:28:26 +0000
committerJeffrey Altman <jaltman@secure-endpoints.com>2006-04-02 04:28:26 +0000
commit1793a32f2464dc98ebada56908fe5b795ae00676 (patch)
tree985caf20175758d0e31b1a177abaed9020bba49a /src/windows/identity/plugins/krb4/krb4plugin.c
parentc7d16c1e1d721b7c65fa70cd62b965219e544f23 (diff)
downloadkrb5-1793a32f2464dc98ebada56908fe5b795ae00676.tar.gz
krb5-1793a32f2464dc98ebada56908fe5b795ae00676.tar.xz
krb5-1793a32f2464dc98ebada56908fe5b795ae00676.zip
Results from Kerberos Interop session:
- 64-bit Windows compatibility - correct uninitialized variables - work without kerberos 4 libraries including krb524 - add a mechanism to add and remove identities from the options dialog. This allows a configuration to be specified using a separate file based ccache for each identity - work without availability of ccapi - force a renew of credentials on startup to support the case when MSLSA is the only credential cache ticket: new git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17832 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/windows/identity/plugins/krb4/krb4plugin.c')
-rw-r--r--src/windows/identity/plugins/krb4/krb4plugin.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/windows/identity/plugins/krb4/krb4plugin.c b/src/windows/identity/plugins/krb4/krb4plugin.c
index 972ed4a01..fb6a88307 100644
--- a/src/windows/identity/plugins/krb4/krb4plugin.c
+++ b/src/windows/identity/plugins/krb4/krb4plugin.c
@@ -49,6 +49,9 @@ krb4_msg_system(khm_int32 msg_type, khm_int32 msg_subtype,
switch(msg_subtype) {
case KMSG_SYSTEM_INIT:
{
+#ifdef _WIN64
+ return KHM_ERROR_NOT_IMPLEMENTED;
+#else
kcdb_credtype ct;
wchar_t buf[KCDB_MAXCCH_SHORT_DESC];
size_t cbsize;
@@ -200,10 +203,14 @@ krb4_msg_system(khm_int32 msg_type, khm_int32 msg_subtype,
&attr_id_krb5_flags))) {
rv = KHM_ERROR_UNKNOWN;
}
+#endif
}
break;
case KMSG_SYSTEM_EXIT:
+#ifdef _WIN64
+ return 0;
+#else
if(credtype_id_krb4 >= 0)
{
/* basically just unregister the credential type */
@@ -212,6 +219,7 @@ krb4_msg_system(khm_int32 msg_type, khm_int32 msg_subtype,
kcdb_credset_delete(krb4_credset);
}
break;
+#endif
}
return rv;