Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@8228 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
braindigitalis committed Oct 18, 2007
1 parent 3049560 commit 9ddc854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/m_ident.cpp
Expand Up @@ -63,7 +63,7 @@ class IdentRequestSocket : public EventHandler
memcpy(&((sockaddr_in6*)addr)->sin6_addr, &addy, sizeof(addy));
((sockaddr_in6*)addr)->sin6_port = htons(113);
size = sizeof(sockaddr_in6);
inet_pton(AF_INET6, IP.c_str(), &n);
inet_pton(AF_INET6, bindip.c_str(), &n);
memcpy(&((sockaddr_in6*)s)->sin6_addr, &n, sizeof(sockaddr_in6));
((sockaddr_in6*)s)->sin6_port = 0;
((sockaddr_in6*)s)->sin6_family = AF_INET6;
Expand Down

0 comments on commit 9ddc854

Please sign in to comment.