summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-11-27 23:59:42 +0000
committerJeremy Allison <jra@samba.org>2000-11-27 23:59:42 +0000
commit0f1c800f8542297b9c1a6a4dff20263e3b6d9d40 (patch)
tree426b829c4680972d57e606f81f2af0f84a1d86ca /source3/smbd
parent120f3afa899eac9a03643ce3e81264d245e09d3d (diff)
downloadsamba-0f1c800f8542297b9c1a6a4dff20263e3b6d9d40.tar.gz
samba-0f1c800f8542297b9c1a6a4dff20263e3b6d9d40.tar.bz2
samba-0f1c800f8542297b9c1a6a4dff20263e3b6d9d40.zip
passdb/secrets.c passdb/smbpassfile.c smbd/server.c : Actually *use* the code
written to transition from an old DOMAIN.MACHINE.MAC file to secrets.tdb. printing/nt_printing.c: Fix case insensitive name lookups for driver files. John - this should fix the Win9x/WinME problem correctly. Jeremy. (This used to be commit 8f3332a9acf413ac5d12053ca5c52733a4e946cc)
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/server.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c
index 97a05686c3..07e554c4fb 100644
--- a/source3/smbd/server.c
+++ b/source3/smbd/server.c
@@ -725,6 +725,11 @@ static void usage(char *pname)
claim_connection(NULL,"",MAXSTATUS,True);
}
+ /* Attempt to migrate from an old 2.0.x machine account file. */
+ if (!migrate_from_old_password_file(global_myworkgroup)) {
+ DEBUG(0,("Failed to migrate from old MAC file.\n"));
+ }
+
if (!open_sockets(is_daemon,port))
exit(1);