diff options
author | Jeremy Allison <jra@samba.org> | 2007-03-12 17:55:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:18:34 -0500 |
commit | 24cdd7c73389c9eed981313973df2c3595222781 (patch) | |
tree | 0b1dbbcde1eea708f774d09b21695d46437de24d /source3/lib/util.c | |
parent | 59c071f707c8bd366b807869e88cbf4714185c29 (diff) | |
download | samba-24cdd7c73389c9eed981313973df2c3595222781.tar.gz |
r21800: Check-in the DFS rewrite. I am still testing this but it
works from smbclient and Windows, and I am promising to
support and fix both client and server code moving forward.
Still need to test the RPC admin support but I haven't
changed that code.
Jeremy.
(This used to be commit 7a7862c01d07796ef206b255c676ad7dc2cc42fc)
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r-- | source3/lib/util.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index aa8aaa0628b..6789a12a1e8 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -2091,6 +2091,9 @@ BOOL is_myname_or_ipaddr(const char *s) /* check for loopback */ + if (strequal(servername, "127.0.0.1")) + return True; + if (strequal(servername, "localhost")) return True; |