summaryrefslogtreecommitdiff
path: root/source/nmbd/nmbd.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/nmbd/nmbd.c')
-rw-r--r--source/nmbd/nmbd.c24
1 files changed, 13 insertions, 11 deletions
diff --git a/source/nmbd/nmbd.c b/source/nmbd/nmbd.c
index dc3f642cd60..75544535af2 100644
--- a/source/nmbd/nmbd.c
+++ b/source/nmbd/nmbd.c
@@ -421,7 +421,7 @@ static void usage(char *pname)
setup_logging(argv[0],False);
- charset_initialise();
+ charset_initialise(-1);
#ifdef LMHOSTSFILE
strcpy(host_file,LMHOSTSFILE);
@@ -498,12 +498,19 @@ static void usage(char *pname)
if (!reload_services(False))
return(-1);
+ charset_initialise(lp_client_code_page());
+
init_structs();
reload_services(True);
strcpy(myworkgroup, lp_workgroup());
+ if (strequal(myworkgroup,"*")) {
+ DEBUG(0,("ERROR: a workgroup name of * is no longer supported\n"));
+ exit(1);
+ }
+
set_samba_nb_type();
if (!is_daemon && !is_a_socket(0)) {
@@ -546,27 +553,22 @@ static void usage(char *pname)
if (!open_sockets(is_daemon,port)) return 1;
- if (*host_file) {
- load_hosts_file(host_file);
- DEBUG(3,("Loaded hosts file\n"));
- }
-
load_interfaces();
add_my_subnets(myworkgroup);
add_my_names();
- if (strequal(myworkgroup,"*")) {
- DEBUG(0,("ERROR: a workgroup name of * is no longer supported\n"));
- exit(1);
- }
-
DEBUG(3,("Checked names\n"));
load_netbios_names();
DEBUG(3,("Loaded names\n"));
+ if (*host_file) {
+ load_hosts_file(host_file);
+ DEBUG(3,("Loaded hosts file\n"));
+ }
+
write_browse_list(time(NULL));
DEBUG(3,("Dumped names\n"));