diff options
author | Andrew Bartlett <abartlet@samba.org> | 2001-12-04 04:45:17 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2001-12-04 04:45:17 +0000 |
commit | 0692d792f24f1c82c69532e50a6c4373c9a8b476 (patch) | |
tree | c1cdb10b576b00fb132abbae5b65e65bab97fe07 | |
parent | 153c4a56b0b5473a1efb208551f36480cdb5d264 (diff) | |
download | samba-0692d792f24f1c82c69532e50a6c4373c9a8b476.tar.gz samba-0692d792f24f1c82c69532e50a6c4373c9a8b476.tar.xz samba-0692d792f24f1c82c69532e50a6c4373c9a8b476.zip |
Fix up funtion name, as this finds local, not domain master browsers.
(as per tridge's instructions)
-rw-r--r-- | source/libsmb/namequery.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/libsmb/namequery.c b/source/libsmb/namequery.c index 8d00c50914e..2c235417a80 100644 --- a/source/libsmb/namequery.c +++ b/source/libsmb/namequery.c @@ -1225,9 +1225,9 @@ BOOL get_dc_list(BOOL pdc_only, char *group, struct in_addr **ip_list, int *coun } /******************************************************** - Get the IP address list of the Domain Master Browsers + Get the IP address list of the Local Master Browsers ********************************************************/ -BOOL get_dmb_list(struct in_addr **ip_list, int *count) +BOOL get_lmb_list(struct in_addr **ip_list, int *count) { return internal_resolve_name( MSBROWSE, 0x1, ip_list, count); } |