diff options
author | Phil Blundell <philb@brightsign.biz> | 2017-05-03 20:35:35 +0100 |
---|---|---|
committer | Phil Blundell <philb@brightsign.biz> | 2017-05-03 20:59:51 +0100 |
commit | e35ac97cc887a89f27c0a4ceb789cf4a7d433556 (patch) | |
tree | 64522d98ce7deedd85e9fbef14423b055d85a552 | |
parent | 8ba5c9b8d6ba7dc33e0427e6d547ca68a98c9fb2 (diff) | |
download | glibc-e35ac97cc887a89f27c0a4ceb789cf4a7d433556.tar.gz glibc-e35ac97cc887a89f27c0a4ceb789cf4a7d433556.tar.xz glibc-e35ac97cc887a89f27c0a4ceb789cf4a7d433556.zip |
Correct misplaced comments in struct ip_mreq_source
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | inet/netinet/in.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index c2d13f1dc8..2e13d668a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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] diff --git a/inet/netinet/in.h b/inet/netinet/in.h index 365bc6878e..e064188721 100644 --- a/inet/netinet/in.h +++ b/inet/netinet/in.h @@ -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 |