Correct misplaced comments in struct ip_mreq_source

This commit is contained in:
Phil Blundell 2017-05-03 20:35:35 +01:00
parent 8ba5c9b8d6
commit e35ac97cc8
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2017-05-03 Phil Blundell <pb@pbcl.net>
* inet/netinet/in.h (struct ip_mreq_source): Correct misplaced
comments.
2017-05-03 Carlos O'Donell <carlos@redhat.com>
[BZ #20116]

View file

@ -275,10 +275,10 @@ struct ip_mreq_source
/* IP multicast address of group. */
struct in_addr imr_multiaddr;
/* IP address of source. */
/* IP address of interface. */
struct in_addr imr_interface;
/* IP address of interface. */
/* IP address of source. */
struct in_addr imr_sourceaddr;
};
#endif