Lines Matching defs:adjunct

89 /* Names of password and adjunct mappings. Used to access DIT */
94 #define PASSWD_ADJUNCT_MAPPING "passwd.adjunct" BYNAME
110 * 2. There are extra fields to hold adjunct information.
121 char *adjunct_tail; /* Tail of adjunct entry (opaque) */
122 bool_t adjunct; /* Flag indicating if DIT has adjunct info */
124 char *adjunct_str; /* New adjunct string */
321 * Generate passwd and adjunct map entries. This creates extra
331 if (old_pwd->adjunct) {
335 "Could not create adjunct entry");
380 char **map_list; /* Array of passwd or adjunct maps */
396 * continue and process passwd.adjunct maps.
399 /* Get list of adjunct maps from mapping file */
403 * Process list of adjunct maps. If the required information
423 * Flag indicating if this is the adjunct list
438 /* If this is a adjunct list check LDAP had some adjunct info */
439 if ((adjunct_flag) && (!pwd->adjunct)) {
441 "Have adjunct map list but no adjunct data in DIT");
525 * Flag indicating if this is an adjunct map.
785 * For adjunct files most of it is left empty.
793 * Flag indicating if we are decoding passwd or passwd.adjunct
799 decode_pwd_entry(datum *data, struct passwd_entry *pwd, bool_t adjunct)
810 if (adjunct) {
811 /* If we found an adjunct version this is the one to use */
820 if (adjunct) {
821 /* If we found an adjunct version this is the one to use */
827 if (adjunct) {
828 /* Store adjunct information in opaque string */
835 /* Remember that LDAP contained adjunct data */
836 pwd->adjunct = TRUE;
840 /* If we get here not adjunct. Decode rest of passwd */
971 * Flag indicating if we should create an adjunct or passwd string.
977 create_pwd_str(struct passwd_entry *pwd, bool_t adjunct)
989 if (adjunct) {
1006 if (!adjunct) {
1009 /* If LDAP contains adjunct info then passwd is 'x' */
1010 if (pwd->adjunct) {
1090 old_passwd->adjunct = FALSE;
1099 /* Try to get the adjunct entry */
1102 /* Fine just no adjunct data */
1103 old_passwd->adjunct = FALSE;
1141 /* If DIT contains adjunct information do the same for adjunct */
1142 if (pwd->adjunct) {