summaryrefslogtreecommitdiffstats
path: root/src/lib/ccapi/client/cacheapi.c
diff options
context:
space:
mode:
authorJeffrey Altman <jaltman@secure-endpoints.com>2006-05-22 17:17:07 +0000
committerJeffrey Altman <jaltman@secure-endpoints.com>2006-05-22 17:17:07 +0000
commit46feb62dc0a36171dd14d33a9aab8b9af42fc595 (patch)
tree43bee6834f96e61af6fa4e5b2223bb1f9b9d05c4 /src/lib/ccapi/client/cacheapi.c
parentecf87aec8e5fde32f8f3e72849b434308900917d (diff)
downloadkrb5-46feb62dc0a36171dd14d33a9aab8b9af42fc595.tar.gz
krb5-46feb62dc0a36171dd14d33a9aab8b9af42fc595.tar.xz
krb5-46feb62dc0a36171dd14d33a9aab8b9af42fc595.zip
Move msg.c and marshall.c to common library
Add dllmain.c which contains the Windows DllMain() entry point. This must be moved later to a Windows specific directory. Cleanup type usage and function name references. All that is missing now from the client DLL is a definition of cci_perform_rpc() which is the entry point to the IPC routine. git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18028 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/ccapi/client/cacheapi.c')
-rw-r--r--src/lib/ccapi/client/cacheapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ccapi/client/cacheapi.c b/src/lib/ccapi/client/cacheapi.c
index 704925dfd..14a1eb476 100644
--- a/src/lib/ccapi/client/cacheapi.c
+++ b/src/lib/ccapi/client/cacheapi.c
@@ -116,7 +116,7 @@ cc_initialize ( cc_context_t* outContext,
} else if (type == ccmsg_ACK) {
response_header = (ccmsg_init_resp_t *)response->header;
*outSupportedVersion = ntohl(response_header->out_version);
- code = cc_int_context_new(outContext, ntohl(response_header->out_ctx), ntohl(response_header->out_version));
+ code = cc_int_context_new(outContext, ntohll(response_header->out_ctx), ntohl(response_header->out_version));
if (!vendor[0]) {
char * string;