Skip to content

Commit

Permalink
2003-02-27 Roland McGrath <roland@redhat.com>
Browse files Browse the repository at this point in the history
	* sunrpc/svc_udp.c (svcudp_recv): Add a cast to last change.
  • Loading branch information
Roland McGrath committed Feb 28, 2003
1 parent 206a5cd commit 63c9fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sunrpc/svc_udp.c
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ svcudp_recv (xprt, msg)
{
/* It was a simple IP_PKTIFO as we expected, discard the
interface field. */
struct in_pktinfo *pkti = CMSG_DATA (cmsg);
struct in_pktinfo *pkti = (struct in_pktinfo *) CMSG_DATA (cmsg);
pkti->ipi_ifindex = 0;
}
}
Expand Down

0 comments on commit 63c9fb5

Please sign in to comment.