passdb-passwd.c revision 3d370bb6763ac4af4a0d143ad7c93300d5ddff89
/* 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;
}
/* make sure we're using the username exactly as it's in the database */
}
static void passwd_deinit(void)
{
endpwent();
}
struct passdb_module passdb_passwd = {
"passwd",
};
#endif