summaryrefslogtreecommitdiff
path: root/source3/libsmb
diff options
context:
space:
mode:
authorChristopher R. Hertel <crh@samba.org>2001-08-29 04:26:27 +0000
committerChristopher R. Hertel <crh@samba.org>2001-08-29 04:26:27 +0000
commit6c38114f57bebec95ce8252e675e8699f683ff5e (patch)
tree48eba69c1153435b2080e9966e5df70299f93f9b /source3/libsmb
parent60519d046bea5d56f73c2a2f18c5146d233c0fad (diff)
downloadsamba-6c38114f57bebec95ce8252e675e8699f683ff5e.tar.gz
samba-6c38114f57bebec95ce8252e675e8699f683ff5e.tar.bz2
samba-6c38114f57bebec95ce8252e675e8699f683ff5e.zip
Fuss, fuss, fuss...
Function name_status_query() performs a node status query, so it really should be called "node_status_query()" just to be consistent. Yeah, minor... but it's looking as though an overhaul of namequery.c is in order and I am trying to do the tiny changes that impact other stuff first. Chris -)----- (This used to be commit 3af2de7ed26e5a26a273be2dcd9c5565c586fe47)
Diffstat (limited to 'source3/libsmb')
-rw-r--r--source3/libsmb/namequery.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libsmb/namequery.c b/source3/libsmb/namequery.c
index b2a7dfc788..4a3cf43b35 100644
--- a/source3/libsmb/namequery.c
+++ b/source3/libsmb/namequery.c
@@ -75,7 +75,7 @@ static struct node_status *parse_node_status(char *p, int *num_names)
do a NBT node status query on an open socket and return an array of
structures holding the returned names or NULL if the query failed
**************************************************************************/
-struct node_status *name_status_query(int fd,struct nmb_name *name,
+struct node_status *node_status_query(int fd,struct nmb_name *name,
struct in_addr to_ip, int *num_names)
{
BOOL found=False;
@@ -173,7 +173,7 @@ BOOL name_status_find(int type, struct in_addr to_ip, char *name)
if (sock == -1) return False;
make_nmb_name(&nname, "*", 0);
- status = name_status_query(sock, &nname, to_ip, &count);
+ status = node_status_query(sock, &nname, to_ip, &count);
close(sock);
if (!status) return False;