userdb-checkpassword.c revision cca4ba2a504d70a9fe9fee37f8433997359de52c
#include "auth-common.h"
#include "userdb.h"
#ifdef USERDB_CHECKPASSWORD
#include "db-checkpassword.h"
struct checkpassword_userdb_module {
struct userdb_module module;
struct db_checkpassword *db;
};
static void
const char *const *extra_fields,
void (*request_callback)())
{
unsigned int i;
switch (status) {
break;
break;
for (i = 0; extra_fields[i] != NULL; i++) {
continue;
extra_fields[i], NULL);
}
break;
}
}
static void
{
struct checkpassword_userdb_module *module =
(struct checkpassword_userdb_module *)_module;
}
static struct userdb_module *
{
struct checkpassword_userdb_module *module;
const char *checkpassword_path = args;
const char *checkpassword_reply_path =
PKG_LIBEXECDIR"/checkpassword-reply";
}
{
struct checkpassword_userdb_module *module =
(struct checkpassword_userdb_module *)_module;
}
struct userdb_module_interface userdb_checkpassword = {
"checkpassword",
NULL,
NULL,
NULL,
};
#else
struct userdb_module_interface userdb_checkpassword = {
.name = "checkpassword"
};
#endif