bjaspan: changed resolve and gennew to take pointers to krb5_ccaches
authorBarry Jaspan <bjaspan@mit.edu>
Sun, 21 Jan 1990 16:08:52 +0000 (16:08 +0000)
committerBarry Jaspan <bjaspan@mit.edu>
Sun, 21 Jan 1990 16:08:52 +0000 (16:08 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@159 dc483132-0cff-0310-8789-dd5450dbe970

src/include/krb5/ccache.h

index cecfa0fc2a1f051eec52898173bc184437b30ba0..1b0fc7ba05d95a8e076debf63af5bbde170cfeae 100644 (file)
@@ -26,8 +26,8 @@ typedef struct _krb5_ccache {
 typedef struct _krb5_cc_ops {
        char *prefix;
        char *(*get_name) PROTOTYPE((krb5_ccache));
-       krb5_error_code (*resolve) PROTOTYPE((krb5_ccache, char *));
-       krb5_error_code (*gen_new) PROTOTYPE((krb5_ccache));
+       krb5_error_code (*resolve) PROTOTYPE((krb5_ccache *, char *));
+       krb5_error_code (*gen_new) PROTOTYPE((krb5_ccache *));
        krb5_error_code (*init) PROTOTYPE((krb5_ccache, krb5_principal));
        krb5_error_code (*destroy) PROTOTYPE((krb5_ccache));
        krb5_error_code (*close) PROTOTYPE((krb5_ccache));