passdb-passwd.c revision 49e513d090753ccbf95560b2f3a21f081a5b6c51
/* Copyright (C) 2002-2003 Timo Sirainen */
#include "config.h"
#ifdef PASSDB_PASSWD
#include "common.h"
#include "safe-memset.h"
#include "passdb.h"
#include "mycrypt.h"
#include <pwd.h>
static void
{
int result;
return;
}
return;
}
/* check if the password is valid */
/* clear the passwords from memory */
if (!result) {
return;
}
}
static void passwd_deinit(void)
{
endpwent();
}
struct passdb_module passdb_passwd = {
"passwd",
};
#endif