diff options
| author | Ken Raeburn <raeburn@mit.edu> | 2009-02-09 23:43:04 +0000 |
|---|---|---|
| committer | Ken Raeburn <raeburn@mit.edu> | 2009-02-09 23:43:04 +0000 |
| commit | 5b80063aebdb3eb2a330a47648137369661e5716 (patch) | |
| tree | f39689f287c76ec45cd60aa151421f5ae3c9108c /src/ccapi/lib/win | |
| parent | 94cf674975471ec6c6bfa66f21de1559cc74983b (diff) | |
| download | krb5-5b80063aebdb3eb2a330a47648137369661e5716.tar.gz krb5-5b80063aebdb3eb2a330a47648137369661e5716.tar.xz krb5-5b80063aebdb3eb2a330a47648137369661e5716.zip | |
Rename functions from k5_ipc_stream_* to krb5int_ipc_stream_*, because some of them will have to be exported
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@21938 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/ccapi/lib/win')
| -rw-r--r-- | src/ccapi/lib/win/ccapi_os_ipc.cxx | 6 | ||||
| -rw-r--r-- | src/ccapi/lib/win/ccs_reply_proc.c | 4 | ||||
| -rw-r--r-- | src/ccapi/lib/win/debug.exports | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/src/ccapi/lib/win/ccapi_os_ipc.cxx b/src/ccapi/lib/win/ccapi_os_ipc.cxx index 6ccd59b9a..b6fc70155 100644 --- a/src/ccapi/lib/win/ccapi_os_ipc.cxx +++ b/src/ccapi/lib/win/ccapi_os_ipc.cxx @@ -207,8 +207,8 @@ extern "C" cc_int32 cci_os_ipc_msg( cc_int32 in_launch_server, in_msg, /* Message type */ (unsigned char*)&ptspdata, /* Our tspdata* will be sent back to the reply proc. */ (unsigned char*)uuid, - k5_ipc_stream_size(in_request_stream), - (unsigned char*)k5_ipc_stream_data(in_request_stream), /* Data buffer */ + krb5int_ipc_stream_size(in_request_stream), + (unsigned char*)krb5int_ipc_stream_data(in_request_stream), /* Data buffer */ sst, /* session start time */ (long*)(&err) ); /* Return code */ } @@ -376,4 +376,4 @@ cc_int32 ccapi_connect(const struct tspdata* tsp) { } return status; - }
\ No newline at end of file + } diff --git a/src/ccapi/lib/win/ccs_reply_proc.c b/src/ccapi/lib/win/ccs_reply_proc.c index 8eb340836..b3ef3f740 100644 --- a/src/ccapi/lib/win/ccs_reply_proc.c +++ b/src/ccapi/lib/win/ccs_reply_proc.c @@ -53,11 +53,11 @@ void ccs_rpc_request_reply( cci_debug_printf("%s! msg#:%d SST:%ld uuid:%s", __FUNCTION__, rpcmsg, srvStartTime, uuid); #endif if (!status) { - status = k5_ipc_stream_new (&stream); /* Create a stream for the request data */ + status = krb5int_ipc_stream_new (&stream); /* Create a stream for the request data */ } if (!status) { /* Put the data into the stream */ - status = k5_ipc_stream_write (stream, chIn, cbIn); + status = krb5int_ipc_stream_write (stream, chIn, cbIn); } if (!status) { /* Put the data into the stream */ diff --git a/src/ccapi/lib/win/debug.exports b/src/ccapi/lib/win/debug.exports index d7fbcc152..7bf84d272 100644 --- a/src/ccapi/lib/win/debug.exports +++ b/src/ccapi/lib/win/debug.exports @@ -3,9 +3,9 @@ cci_os_ipc
cci_os_ipc_msg
cci_os_ipc_thread_init
- k5_ipc_stream_data
- k5_ipc_stream_write
- k5_ipc_stream_new
+ krb5int_ipc_stream_data
+ krb5int_ipc_stream_write
+ krb5int_ipc_stream_new
ccs_authenticate
|
