summaryrefslogtreecommitdiffstats
path: root/src/windows/kfwlogon/kfwcpcc.c
diff options
context:
space:
mode:
authorJeffrey Altman <jaltman@secure-endpoints.com>2007-03-27 13:37:30 +0000
committerJeffrey Altman <jaltman@secure-endpoints.com>2007-03-27 13:37:30 +0000
commit03daaf5a14da271187063fd0682c320965fb2a48 (patch)
tree4c6de1cc50439e7b91f4f70c6bda6e8f363eed6c /src/windows/kfwlogon/kfwcpcc.c
parent688a43d9ef057f3a0e1f7c2fdb1cdf24869aaad3 (diff)
downloadkrb5-03daaf5a14da271187063fd0682c320965fb2a48.tar.gz
krb5-03daaf5a14da271187063fd0682c320965fb2a48.tar.xz
krb5-03daaf5a14da271187063fd0682c320965fb2a48.zip
This commit addresses several issues:
(1) The registry key used for activating event reporting to the Windows application log was wrong. It should be "NetworkProvider" not "Network Provider" (2) Event logging of the state of the "Debug" value has been added so that it is possible to debug the use of event reporting. (3) The code no longer performs the pre-kinit operations if a password was not provided. (4) A new function KFW_copy_file_cache_to_api_cache() has been added. This is used instead of KFW_copy_file_cache_to_default_cache() permitting the default cache to be MSLSA, FILE, or anything else. The API cache name will be of the form API:principal just as is done by Network Identity Manager. ticket: 5469 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19289 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/windows/kfwlogon/kfwcpcc.c')
-rw-r--r--src/windows/kfwlogon/kfwcpcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windows/kfwlogon/kfwcpcc.c b/src/windows/kfwlogon/kfwcpcc.c
index c3485c02d0..5ff7785527 100644
--- a/src/windows/kfwlogon/kfwcpcc.c
+++ b/src/windows/kfwlogon/kfwcpcc.c
@@ -33,7 +33,7 @@ int main(int argc, char *argv[])
KFW_initialize();
- return KFW_copy_file_cache_to_default_cache(argv[1]);
+ return KFW_copy_file_cache_to_api_cache(argv[1]);
}