24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-09-21 14:06:57 +02:00

Fix mistake when calling win32_dns.

SVN Revision: 1990
This commit is contained in:
Badlop 2009-03-11 18:36:27 +00:00
parent d0a6ae7855
commit cd3556f195

View File

@ -191,6 +191,6 @@ maybe_add_nameservers() ->
end.
add_windows_nameservers() ->
IPTs = win32_dns_test:get_nameservers(),
IPTs = win32_dns:get_nameservers(),
?INFO_MSG("Adding machine's DNS IPs to Erlang system:~n~p", [IPTs]),
lists:foreach(fun(IPT) -> inet_db:add_ns(IPT) end, IPTs).