Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: binary MIME-Version: 1.0 X-Mailer: MIME-tools 5.411 (Entity 5.404) RT-Send-CC: X-RT-Original-Encoding: iso-8859-1 Content-Length: 720 The cc_remove field of every implementation of krb5_cc_ops is NULL. This is because there are no functions defined to implement the cc_remove functionality. This has been true since the very beginning. Clearly no one calls this function. This can be fixed in one of two ways. Add checks to the wrapper functions to test for NULL and return an error if NULL is found; or add the functions to each of the implementations and have the implementations return an error. My preference is to add functions to each of the implementations. The hardest question to answer is which error should be returned. I do not believe any of the existing error values is appropriate and a new error: KRB5_CC_NOSUPP should be added.