Commit e602abf8 authored by Thomas Guillem's avatar Thomas Guillem Committed by Jean-Baptiste Kempf

dsm: use NETBIOS_FILESERVER define

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 8227f7e6
...@@ -306,7 +306,8 @@ static int get_address( access_t *p_access ) ...@@ -306,7 +306,8 @@ static int get_address( access_t *p_access )
struct addrinfo *p_info = NULL; struct addrinfo *p_info = NULL;
/* Is this a netbios name on this LAN ? */ /* Is this a netbios name on this LAN ? */
if( netbios_ns_resolve( p_sys->p_ns, p_sys->url.psz_host, 0x20, if( netbios_ns_resolve( p_sys->p_ns, p_sys->url.psz_host,
NETBIOS_FILESERVER,
&p_sys->addr.s_addr) ) &p_sys->addr.s_addr) )
{ {
strlcpy( p_sys->netbios_name, p_sys->url.psz_host, 16); strlcpy( p_sys->netbios_name, p_sys->url.psz_host, 16);
......
...@@ -73,7 +73,7 @@ static void *Run( void *data ) ...@@ -73,7 +73,7 @@ static void *Run( void *data )
netbios_ns_entry *p_entry = netbios_ns_entry_at( p_sys->p_ns, i ); netbios_ns_entry *p_entry = netbios_ns_entry_at( p_sys->p_ns, i );
char type = netbios_ns_entry_type( p_entry ); char type = netbios_ns_entry_type( p_entry );
if( type == 0x20 ) if( type == NETBIOS_FILESERVER )
{ {
input_item_t *p_item; input_item_t *p_item;
char *psz_mrl; char *psz_mrl;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment