passdb-dict.c revision 74674a53a72dab535c61f455b2246ef2797844ea
#include "auth-common.h"
#include "passdb.h"
#include "array.h"
#include "str.h"
#include "var-expand.h"
#include "dict.h"
#include "password-scheme.h"
#include "auth-cache.h"
#include "db-dict.h"
#include <string.h>
struct dict_passdb_module {
struct passdb_dict_request {
} callback;
static enum passdb_result
int ret;
&iter);
if (ret < 0)
return PASSDB_RESULT_INTERNAL_FAILURE;
else if (ret == 0) {
return PASSDB_RESULT_USER_UNKNOWN;
return PASSDB_RESULT_INTERNAL_FAILURE;
return PASSDB_RESULT_PASSWORD_MISMATCH;
return PASSDB_RESULT_OK;
int ret;
static struct passdb_module *
NULL,