summaryrefslogtreecommitdiff
path: root/source/namedbname.c
diff options
context:
space:
mode:
authorSamba Release Account <samba-bugs@samba.org>1996-10-27 15:23:51 +0000
committerSamba Release Account <samba-bugs@samba.org>1996-10-27 15:23:51 +0000
commitadf5a42c21cd73ee0eaf05030e01788908fbb8a5 (patch)
tree37724ac27ee205dba8301d57a56d1b204a02dbab /source/namedbname.c
parentb289db62f1a53f1a68ea48dbfa59720cc778d39c (diff)
downloadsamba-adf5a42c21cd73ee0eaf05030e01788908fbb8a5.tar.gz
removed getdomainname() stuff and appending a '.' to the name in
dns_name_search(). lkcl
Diffstat (limited to 'source/namedbname.c')
-rw-r--r--source/namedbname.c22
1 files changed, 1 insertions, 21 deletions
diff --git a/source/namedbname.c b/source/namedbname.c
index c1ec92ea001..208fa956640 100644
--- a/source/namedbname.c
+++ b/source/namedbname.c
@@ -520,7 +520,6 @@ struct name_record *dns_name_search(struct nmb_name *question, int Time)
BOOL dns_type = (name_type == 0x20 || name_type == 0);
struct in_addr dns_ip;
struct subnet_record *d = find_subnet(ipgrp);
- pstring dns_name;
if (d == NULL) return NULL;
@@ -533,27 +532,8 @@ struct name_record *dns_name_search(struct nmb_name *question, int Time)
return NULL;
}
- StrnCpy(dns_name, qname, sizeof(dns_name));
- if ((r = strchr(dns_name,'.')) == NULL)
- {
- /* append a dot to the name, hopefully to stop DNS recursing */
- strcat(dns_name, ".");
-
-#ifdef NETGROUP
- {
- char domainname[255];
-
- if (getdomainname(domainname, sizeof(domainname)) == 0)
- {
- /* we have a domain name - append it to the dns name */
- strcat(dns_name, domainname);
- }
- }
-#endif
- }
-
/* look it up with DNS */
- dns_ip.s_addr = interpret_addr(dns_name);
+ dns_ip.s_addr = interpret_addr(qname);
if (!dns_ip.s_addr)
{