Displaying 1 result from an estimated 1 matches for "passwd_userdb_module".
2006 Feb 03
1
passwd-userdb with args
....18
--- src/auth/userdb-passwd.c 3 Feb 2006 12:34:22 -0000
***************
*** 4,18 ****
--- 4,34 ----
#ifdef USERDB_PASSWD
+ #include "array.h"
+ #include "str.h"
+ #include "var-expand.h"
#include "userdb.h"
#include <pwd.h>
+ struct passwd_userdb_module {
+ struct userdb_module module;
+
+ array_t ARRAY_DEFINE(template, const char *);
+ };
+
static void passwd_lookup(struct auth_request *auth_request,
userdb_callback_t *callback)
{
+ struct userdb_module *_module = auth_request->userdb->userdb;
+ struct passwd_userdb_module...