summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2007-02-27 13:42:15 +0000
committerGünther Deschner <gd@samba.org>2007-02-27 13:42:15 +0000
commitaf54449266f8fa55023c90b0e9d2013499785267 (patch)
tree3072b984138e401b65d549044c376b700172d8b6
parent97def5acc7bbd421391629ace8c389ba186ad9b4 (diff)
downloadsamba-af54449266f8fa55023c90b0e9d2013499785267.tar.gz
samba-af54449266f8fa55023c90b0e9d2013499785267.tar.xz
samba-af54449266f8fa55023c90b0e9d2013499785267.zip
r21560: Convert name_to_fqdn to BOOL.
Guenther
-rw-r--r--source/lib/util.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/source/lib/util.c b/source/lib/util.c
index 5f9eb4fc450..67c9c8d37a7 100644
--- a/source/lib/util.c
+++ b/source/lib/util.c
@@ -2902,10 +2902,11 @@ BOOL unix_wild_match(const char *pattern, const char *string)
}
/**********************************************************************
- Converts a name to a fully qalified domain name.
+ Converts a name to a fully qualified domain name.
+ Returns True if lookup succeeded, False if not (then fqdn is set to name)
***********************************************************************/
-void name_to_fqdn(fstring fqdn, const char *name)
+BOOL name_to_fqdn(fstring fqdn, const char *name)
{
struct hostent *hp = sys_gethostbyname(name);
@@ -2927,7 +2928,7 @@ void name_to_fqdn(fstring fqdn, const char *name)
if (full && (StrCaseCmp(full, "localhost.localdomain") == 0)) {
DEBUG(1, ("WARNING: your /etc/hosts file may be broken!\n"));
DEBUGADD(1, (" Specifing the machine hostname for address 127.0.0.1 may lead\n"));
- DEBUGADD(1, (" to Kerberos authentication probelms as localhost.localdomain\n"));
+ DEBUGADD(1, (" to Kerberos authentication problems as localhost.localdomain\n"));
DEBUGADD(1, (" may end up being used instead of the real machine FQDN.\n"));
full = hp->h_name;
}
@@ -2938,9 +2939,11 @@ void name_to_fqdn(fstring fqdn, const char *name)
DEBUG(10,("name_to_fqdn: lookup for %s -> %s.\n", name, full));
fstrcpy(fqdn, full);
+ return True;
} else {
DEBUG(10,("name_to_fqdn: lookup for %s failed.\n", name));
fstrcpy(fqdn, name);
+ return False;
}
}