summaryrefslogtreecommitdiffstats
path: root/src/lib/kadm/adm_rw.c
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>1995-06-11 06:31:30 +0000
committerTom Yu <tlyu@mit.edu>1995-06-11 06:31:30 +0000
commitb3957fc70b2a12ed3e00433797d035d652438c26 (patch)
tree321d18feed911d938ab3d74ed25db7f190cf6087 /src/lib/kadm/adm_rw.c
parent38d86476c575d1a894d74fe814c3cc84b3d4d5b0 (diff)
downloadkrb5-b3957fc70b2a12ed3e00433797d035d652438c26.tar.gz
krb5-b3957fc70b2a12ed3e00433797d035d652438c26.tar.xz
krb5-b3957fc70b2a12ed3e00433797d035d652438c26.zip
changes to accomodate redefinition of krb5_auth_context
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6035 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/kadm/adm_rw.c')
-rw-r--r--src/lib/kadm/adm_rw.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/kadm/adm_rw.c b/src/lib/kadm/adm_rw.c
index dda6e7d617..bed4e4bb15 100644
--- a/src/lib/kadm/adm_rw.c
+++ b/src/lib/kadm/adm_rw.c
@@ -100,7 +100,7 @@ krb5_error_code INTERFACE
krb5_send_adm_cmd(kcontext, sock, ctx, nargs, arglist)
krb5_context kcontext; /* Context handle (In ) */
krb5_pointer sock; /* Socket to write to (In ) */
- krb5_auth_context *ctx; /* Auth context (In ) */
+ krb5_auth_context ctx; /* Auth context (In ) */
krb5_int32 nargs; /* Number of arguments (In ) */
krb5_data *arglist; /* Components to write (In ) */
{
@@ -193,7 +193,7 @@ krb5_error_code
krb5_send_adm_reply(kcontext, sock, ctx, cmd_stat, ncomps, complist)
krb5_context kcontext; /* Context handle (In ) */
krb5_pointer sock; /* Socket to write to (In ) */
- krb5_auth_context *ctx; /* Auth context (In ) */
+ krb5_auth_context ctx; /* Auth context (In ) */
krb5_int32 cmd_stat; /* Command status (In ) */
krb5_int32 ncomps; /* Number of arguments (In ) */
krb5_data *complist; /* Components to write (In ) */
@@ -288,7 +288,7 @@ krb5_error_code
krb5_read_adm_cmd(kcontext, sock, ctx, nargs, arglist)
krb5_context kcontext; /* Context handle (In ) */
krb5_pointer sock; /* Socket to read from (In ) */
- krb5_auth_context *ctx; /* Auth context (In ) */
+ krb5_auth_context ctx; /* Auth context (In ) */
krb5_int32 *nargs; /* Number of arguments (Out) */
krb5_data **arglist; /* List of arguments (Out) */
{
@@ -416,7 +416,7 @@ krb5_error_code INTERFACE
krb5_read_adm_reply(kcontext, sock, ctx, cmd_stat, ncomps, complist)
krb5_context kcontext; /* Context handle (In ) */
krb5_pointer sock; /* Socket to read from (In ) */
- krb5_auth_context *ctx; /* Auth context (In ) */
+ krb5_auth_context ctx; /* Auth context (In ) */
krb5_int32 *cmd_stat; /* Command status (Out) */
krb5_int32 *ncomps; /* # of reply components(Out) */
krb5_data **complist; /* List of components (Out) */