summaryrefslogtreecommitdiff
path: root/source3/lib/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r--source3/lib/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index 086b3c7068..031f50e8af 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -2835,7 +2835,7 @@ void name_to_fqdn(fstring fqdn, const char *name)
if ( hp && hp->h_name && *hp->h_name ) {
char *full = NULL;
- /* find out i fthe fqdn is returned as an alias
+ /* find out if the fqdn is returned as an alias
* to cope with /etc/hosts files where the first
* name is not the fqdn but the short name */
if (hp->h_aliases && (! strchr_m(hp->h_name, '.'))) {
@@ -2849,7 +2849,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, (" 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, (" may end up to be used instead of the real machine FQDN.\n"));
full = hp->h_name;