transpose last two paramaters to krb5_cc_next_cred (as MIT does, and not as they document). From "Jacques A. Vidrine" <n@nectar.com>

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@9923 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2001-05-11 19:55:13 +00:00
parent 7c94bbb1fe
commit 06a574edbb
2 changed files with 6 additions and 6 deletions

View File

@@ -275,8 +275,8 @@ print_tickets (krb5_context context,
}
while (krb5_cc_next_cred (context,
ccache,
&creds,
&cursor) == 0) {
&cursor,
&creds) == 0) {
if(do_verbose){
print_cred_verbose(context, &creds);
}else{

View File

@@ -281,7 +281,7 @@ krb5_cc_retrieve_cred(krb5_context context,
krb5_error_code ret;
krb5_cc_cursor cursor;
krb5_cc_start_seq_get(context, id, &cursor);
while((ret = krb5_cc_next_cred(context, id, creds, &cursor)) == 0){
while((ret = krb5_cc_next_cred(context, id, &cursor, creds)) == 0){
if(krb5_compare_creds(context, whichfields, mcreds, creds)){
ret = 0;
break;
@@ -328,8 +328,8 @@ krb5_cc_start_seq_get (krb5_context context,
krb5_error_code
krb5_cc_next_cred (krb5_context context,
const krb5_ccache id,
krb5_creds *creds,
krb5_cc_cursor *cursor)
krb5_cc_cursor *cursor,
krb5_creds *creds)
{
return id->ops->get_next(context, id, cursor, creds);
}
@@ -400,7 +400,7 @@ krb5_cc_copy_cache(krb5_context context,
krb5_free_principal(context, princ);
return ret;
}
while(ret == 0 && krb5_cc_next_cred(context, from, &cred, &cursor) == 0){
while(ret == 0 && krb5_cc_next_cred(context, from, &cursor, &cred) == 0){
ret = krb5_cc_store_cred(context, to, &cred);
krb5_free_creds_contents (context, &cred);
}