]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Correct comments in ccselect_plugin.h
authorZhanna Tsitkov <tsitkova@mit.edu>
Wed, 18 Sep 2013 20:18:11 +0000 (16:18 -0400)
committerZhanna Tsitkov <tsitkova@mit.edu>
Wed, 18 Sep 2013 20:27:05 +0000 (16:27 -0400)
Some text mistakenly referred to password quality plugin.

src/include/krb5/ccselect_plugin.h

index ab3270bbda0a2680643320e6b73f23c6009bb0db..ff9631311603bc219df4cbe4cc9908eaa61988ba 100644 (file)
@@ -30,7 +30,7 @@
  * version, which is 1.  Major version 1 has a current minor version number of
  * 1.
  *
- * Password quality plugin modules should define a function named
+ * Credential cache selection modules should define a function named
  * ccselect_<modulename>_initvt, matching the signature:
  *
  *   krb5_error_code
@@ -57,7 +57,7 @@
 #include <krb5/krb5.h>
 #include <krb5/plugin.h>
 
-/* An abstract type for password quality module data. */
+/* An abstract type for credential cache selection module data. */
 typedef struct krb5_ccselect_moddata_st *krb5_ccselect_moddata;
 
 #define KRB5_CCSELECT_PRIORITY_AUTHORITATIVE 2
@@ -93,7 +93,7 @@ typedef void
 
 /*** vtable declarations **/
 
-/* Password quality plugin vtable for major version 1. */
+/* Credential cache selection plugin vtable for major version 1. */
 typedef struct krb5_ccselect_vtable_st {
     const char *name;           /* Mandatory: name of module. */
     krb5_ccselect_init_fn init;