1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-17 04:23:50 +03:00

r26378: Remove use of global_loadparm.

(This used to be commit 81333de535)
This commit is contained in:
Jelmer Vernooij
2007-12-10 18:41:33 +01:00
committed by Stefan Metzmacher
parent 51ef1b606f
commit eede6b87e1
2 changed files with 6 additions and 5 deletions

View File

@@ -241,7 +241,7 @@ struct resolve_context *lp_resolve_context(struct loadparm_context *lp_ctx)
if (!strcmp(methods[i], "wins")) {
resolve_context_add_wins_method(ret, lp_wins_server_list(lp_ctx));
} else if (!strcmp(methods[i], "bcast")) {
resolve_context_add_bcast_method(ret);
resolve_context_add_bcast_method(ret, lp_ctx);
} else if (!strcmp(methods[i], "host")) {
resolve_context_add_host_method(ret);
} else {