aboutsummaryrefslogtreecommitdiff
path: root/src/ccapi/server/ccs_ccache_iterator.c
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2009-02-09 23:43:04 +0000
committerKen Raeburn <raeburn@mit.edu>2009-02-09 23:43:04 +0000
commit5b80063aebdb3eb2a330a47648137369661e5716 (patch)
treef39689f287c76ec45cd60aa151421f5ae3c9108c /src/ccapi/server/ccs_ccache_iterator.c
parent94cf674975471ec6c6bfa66f21de1559cc74983b (diff)
downloadkrb5-5b80063aebdb3eb2a330a47648137369661e5716.zip
krb5-5b80063aebdb3eb2a330a47648137369661e5716.tar.gz
krb5-5b80063aebdb3eb2a330a47648137369661e5716.tar.bz2
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/server/ccs_ccache_iterator.c')
-rw-r--r--src/ccapi/server/ccs_ccache_iterator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ccapi/server/ccs_ccache_iterator.c b/src/ccapi/server/ccs_ccache_iterator.c
index 0e05056..fb007bf 100644
--- a/src/ccapi/server/ccs_ccache_iterator.c
+++ b/src/ccapi/server/ccs_ccache_iterator.c
@@ -119,7 +119,7 @@ static cc_int32 ccs_ccache_iterator_clone (ccs_ccache_iterator_t io_ccache_ite
if (!out_reply_data ) { err = cci_check_error (ccErrBadParam); }
if (!err) {
- err = k5_ipc_stream_new (&reply_data);
+ err = krb5int_ipc_stream_new (&reply_data);
}
if (!err) {
@@ -151,7 +151,7 @@ static cc_int32 ccs_ccache_iterator_clone (ccs_ccache_iterator_t io_ccache_ite
reply_data = NULL; /* take ownership */
}
- k5_ipc_stream_release (reply_data);
+ krb5int_ipc_stream_release (reply_data);
return cci_check_error (err);
}