lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 08 Apr 2008 02:14:07 -0700 (PDT)
From:	David Miller <davem@...emloft.net>
To:	johnsonzjo@...il.com
Cc:	yoshfuji@...ux-ipv6.org, netdev@...r.kernel.org
Subject: Re: [GIT PULL net-2.6.26] [IPV6] MROUTE: Support multicast routing.

From: "Andy Johnson" <johnsonzjo@...il.com>
Date: Tue, 8 Apr 2008 09:57:39 +0300

> mld6.c: In function 'init_mld6':
> mld6.c:210: error: 'ICMP6_MEMBERSHIP_QUERY' undeclared (first use in
> this function)
> mld6.c:210: error: (Each undeclared identifier is reported only once
> mld6.c:210: error: for each function it appears in.)
> mld6.c:211: error: 'ICMP6_MEMBERSHIP_REPORT' undeclared (first use in
> this function)
> mld6.c:212: error: 'ICMP6_MEMBERSHIP_REDUCTION' undeclared (first use
> in this function)
> mld6.c: In function 'accept_mld6':
> mld6.c:451: error: 'MLD_LISTENER_DONE' undeclared (first use in this function)

Somewhere along the line ICMP6_MEMBERSHIP_* got changed
into MLD_LISTENER_* in the glibc headers.

Similarly MLD_LISTENER_DONE should be MLD_LISTENER_REDUCTION.

In glibc-2.3.x both defines were provided, but after that the old
ICMP6_* defines were completely removed.

Probably Yoshifuji-san tests the user tool builds on a glibc-2.3.x or
earlier system, which has the old deprecated defines.

So if you simply change:

	ICMP6_MEMBERSHIP_* --> MLD_LISTENER_*

and also:

	MLD_LISTENER_DONE --> MLD_LISTENER_REDUCTION

the build will complete successfully.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ