summaryrefslogtreecommitdiff
path: root/source3/lib/interface.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/interface.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/interface.c')
-rw-r--r--source3/lib/interface.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source3/lib/interface.c b/source3/lib/interface.c
index 9d073bc08c..9627bf63dd 100644
--- a/source3/lib/interface.c
+++ b/source3/lib/interface.c
@@ -100,14 +100,6 @@ void setup_linklocal_scope_id(struct sockaddr_storage *pss)
return;
}
}
- for (i=local_interfaces;i;i=i->next) {
- if (same_net(pss, &i->ip, &i->netmask)) {
- struct sockaddr_in6 *psa6 =
- (struct sockaddr_in6 *)pss;
- psa6->sin6_scope_id = if_nametoindex(i->name);
- return;
- }
- }
}
#endif