1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-04 05:18:06 +03:00

Move a function to avoid a warning.

This commit is contained in:
Tim Potter 0001-01-01 00:00:00 +00:00
parent 6a9bfcd3b8
commit a3b4c57503

View File

@ -86,29 +86,6 @@ static void nss_wins_init(void)
load_interfaces();
}
static struct node_status *lookup_byaddr_backend(char *addr, int *count)
{
int fd;
struct in_addr ip;
struct nmb_name nname;
struct node_status *status;
if (!initialised) {
nss_wins_init();
}
fd = wins_lookup_open_socket_in();
if (fd == -1)
return NULL;
make_nmb_name(&nname, "*", 0);
ip = *interpret_addr2(addr);
status = node_status_query(fd,&nname,ip, count);
close(fd);
return status;
}
static struct in_addr *lookup_byname_backend(const char *name, int *count)
{
int fd = -1;
@ -149,8 +126,31 @@ static struct in_addr *lookup_byname_backend(const char *name, int *count)
return ret;
}
#ifdef HAVE_NS_API_H
static struct node_status *lookup_byaddr_backend(char *addr, int *count)
{
int fd;
struct in_addr ip;
struct nmb_name nname;
struct node_status *status;
if (!initialised) {
nss_wins_init();
}
fd = wins_lookup_open_socket_in();
if (fd == -1)
return NULL;
make_nmb_name(&nname, "*", 0);
ip = *interpret_addr2(addr);
status = node_status_query(fd,&nname,ip, count);
close(fd);
return status;
}
/* IRIX version */
int init(void)