diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-09-05 08:54:04 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-09-05 08:54:04 +0000 |
commit | fbe6685a79d6480ee5d6f97c30e78254dcf8b0ff (patch) | |
tree | 86bd376ba1f93b1ab1583550b7e1d7987cb20282 /source3/passdb/passdb.c | |
parent | 7844aa868b02f99c013f336ee03ef05adbd11a7b (diff) | |
download | samba-fbe6685a79d6480ee5d6f97c30e78254dcf8b0ff.tar.gz samba-fbe6685a79d6480ee5d6f97c30e78254dcf8b0ff.tar.xz samba-fbe6685a79d6480ee5d6f97c30e78254dcf8b0ff.zip |
fixed some compilation errors in cli_netlogon.c - tim, you need to rerun configure to get the new NTSTATUS stuff right
(This used to be commit 9bae57cfe30825174536d11983bb3434498e3f03)
Diffstat (limited to 'source3/passdb/passdb.c')
-rw-r--r-- | source3/passdb/passdb.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c index c86e4c17a7..fae538a77d 100644 --- a/source3/passdb/passdb.c +++ b/source3/passdb/passdb.c @@ -42,15 +42,14 @@ static void* pdb_handle = NULL; ***************************************************************/ BOOL initialize_password_db(BOOL reload) { - - char* modulename = lp_passdb_module_path(); - /* This function is unfinished right now, so just ignore the details and always return True. It is here only as a placeholder --jerry */ return True; #if _NOT_YET_ + char* modulename = lp_passdb_module_path(); + /* load another module? */ if (reload && pdb_handle) { |