db-passwd-file.h revision 02120b4c0f07d1b691602c51c75bee5c466e4a2f
#ifndef __DB_PASSWD_FILE_H
#define __DB_PASSWD_FILE_H
struct passwd_user {
char *home;
char *password;
char **extra_fields;
};
struct passwd_file {
struct db_passwd_file *db;
char *path;
int fd;
struct hash_table *users;
const char *first_missing_userdb_info;
unsigned int missing_userdb_info_count;
};
struct db_passwd_file {
struct db_passwd_file *next;
int refcount;
char *path;
struct hash_table *files;
struct passwd_file *default_file;
unsigned int domain_var:1;
unsigned int vars:1;
unsigned int userdb:1;
unsigned int debug:1;
};
struct passwd_user *
struct db_passwd_file *
#endif