commit | 84152ee6841d0d83bd46ed6f8f12cc5c08386c7f | [log] [tgz] |
---|---|---|
author | Paul Jakma <paul.jakma@sun.com> | Mon Nov 24 22:25:16 2008 +0000 |
committer | Paul Jakma <paul@quagga.net> | Mon Nov 24 22:25:16 2008 +0000 |
tree | e832a6c1cb1f752dfd1f38fd3c4804038ec455f2 | |
parent | e0081f70ede76bc7a3db53eaab3e45ba657cc4d3 [diff] [blame] |
[lib] fix missing sockunion_normalise_mapped * lib/sockunion.c: (sockunion_accept) sockunion needs to be normalised here, as it used to before this was moved to a dedicated function..
diff --git a/lib/sockunion.c b/lib/sockunion.c index 8fbe345..3750295 100644 --- a/lib/sockunion.c +++ b/lib/sockunion.c
@@ -271,6 +271,7 @@ len = sizeof (union sockunion); client_sock = accept (sock, (struct sockaddr *) su, &len); + sockunion_normalise_mapped (su); return client_sock; }