Skip to content

Commit

Permalink
corrected argument to sa6_recoverscope() in init_sin6().
Browse files Browse the repository at this point in the history
  • Loading branch information
jinmei committed Jun 21, 2005
1 parent e2373ef commit 9a7bd14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion freebsd5/sys/netinet6/in6_pcb.c
Expand Up @@ -1002,7 +1002,7 @@ init_sin6(struct sockaddr_in6 *sin6, struct mbuf *m)
sin6->sin6_family = AF_INET6;
sin6->sin6_addr = ip->ip6_src;

(void)sa6_recoverscope(&sin6); /* XXX: should catch errors... */
(void)sa6_recoverscope(sin6); /* XXX: should catch errors... */

return;
}

0 comments on commit 9a7bd14

Please sign in to comment.