Home
last modified time | relevance | path

Searched refs:pcursor (Results 1 – 1 of 1) sorted by relevance

/freebsd/crypto/krb5/src/lib/krb5/keytab/
H A Dkt_memory.c585 krb5_mkt_cursor *pcursor, next; in krb5_mkt_remove() local
595 for ( pcursor = &KTLINK(id); *pcursor; pcursor = &(*pcursor)->next ) { in krb5_mkt_remove()
596 if ( (*pcursor)->entry->vno == entry->vno && in krb5_mkt_remove()
597 (*pcursor)->entry->key.enctype == entry->key.enctype && in krb5_mkt_remove()
598 krb5_principal_compare(context, (*pcursor)->entry->principal, entry->principal)) in krb5_mkt_remove()
602 if (!*pcursor) { in krb5_mkt_remove()
607 krb5_kt_free_entry(context, (*pcursor)->entry); in krb5_mkt_remove()
608 free((*pcursor)->entry); in krb5_mkt_remove()
609 next = (*pcursor)->next; in krb5_mkt_remove()
610 free(*pcursor); in krb5_mkt_remove()
[all …]