summaryrefslogtreecommitdiff
path: root/source3/lib/util_sock.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-10-25 19:07:25 -0700
committerJeremy Allison <jra@samba.org>2007-10-25 19:07:25 -0700
commite054affb7bb3e2aa00663c2d4dfa04c19870ddaf (patch)
tree6f0e23e2314ff7aa8300a273152e311d713a6346 /source3/lib/util_sock.c
parent6128d116b3f09ce0b055d2df89b2f7282185782e (diff)
downloadsamba-e054affb7bb3e2aa00663c2d4dfa04c19870ddaf.tar.gz
samba-e054affb7bb3e2aa00663c2d4dfa04c19870ddaf.tar.bz2
samba-e054affb7bb3e2aa00663c2d4dfa04c19870ddaf.zip
Fix bug in writing names into gencache
as well as 2 typos where AF_INET6 was mistypes as AF_INET. JERRY YOU NEED THESE FIXES. Fixes smbclient -L localhost -U% Bugs reported by Kukks (thanks kukks). Jeremy. (This used to be commit f109f82622ca30ae2360e8300152e90b9587ffd8)
Diffstat (limited to 'source3/lib/util_sock.c')
-rw-r--r--source3/lib/util_sock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c
index c30f21eeb7..80d4af8cdb 100644
--- a/source3/lib/util_sock.c
+++ b/source3/lib/util_sock.c
@@ -234,7 +234,7 @@ bool is_loopback_ip_v4(struct in_addr ip)
bool is_loopback_addr(const struct sockaddr_storage *pss)
{
#if defined(HAVE_IPV6)
- if (pss->ss_family == AF_INET) {
+ if (pss->ss_family == AF_INET6) {
struct in6_addr *pin6 =
&((struct sockaddr_in6 *)pss)->sin6_addr;
return IN6_IS_ADDR_LOOPBACK(pin6);
@@ -265,7 +265,7 @@ bool is_zero_ip_v4(struct in_addr ip)
bool is_zero_addr(const struct sockaddr_storage *pss)
{
#if defined(HAVE_IPV6)
- if (pss->ss_family == AF_INET) {
+ if (pss->ss_family == AF_INET6) {
struct in6_addr *pin6 =
&((struct sockaddr_in6 *)pss)->sin6_addr;
return IN6_IS_ADDR_UNSPECIFIED(pin6);