summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2006-09-14 16:33:47 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:51:48 -0500
commit019c89a67e799a2b3cf957dc22c9fd866bb5fcb0 (patch)
tree17d899ce36e482729fc76b390e1c37d8e06bc511
parentf560ee201da836e936ad7386eef8f22b7e78e07e (diff)
downloadsamba-019c89a67e799a2b3cf957dc22c9fd866bb5fcb0.tar.gz
samba-019c89a67e799a2b3cf957dc22c9fd866bb5fcb0.tar.bz2
samba-019c89a67e799a2b3cf957dc22c9fd866bb5fcb0.zip
r18530: typos
(This used to be commit 8c5c4959ede04e1cdbfe65beeee1f67ac0a93753)
-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;