Page MenuHomeFreeBSD

dhclient: raise WARNS to 4
ClosedPublic

Authored by asomers on Feb 21 2018, 6:12 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Jul 5, 5:03 PM
Unknown Object (File)
Tue, Jul 1, 1:30 PM
Unknown Object (File)
Tue, Jul 1, 3:24 AM
Unknown Object (File)
Sun, Jun 15, 7:55 AM
Unknown Object (File)
Fri, Jun 13, 12:46 PM
Unknown Object (File)
Wed, Jun 11, 2:08 AM
Unknown Object (File)
Wed, Jun 11, 2:03 AM
Unknown Object (File)
May 5 2025, 8:42 AM
Subscribers

Details

Summary

dhclient: raise WARNS to 4

Mostly const-correctness fixes. There were also some variable-shadowing,
unused variable, and a couple of sockaddr type-correctness changes. I also had
trouble with cast-align warnings. I was able to prove that one of them was a
false positive. But ultimately I had to disable the warning program-wide to
deal with the others.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Looks good. Two questions below

sbin/dhclient/dispatch.c
106 ↗(On Diff #39574)

Should this be the _Alignof the pointer type or the struct type?

109 ↗(On Diff #39574)

Is this needed with the NO_WCAST_ALIGN Makefile variable?

This revision is now accepted and ready to land.Feb 21 2018, 8:36 PM
sbin/dhclient/dispatch.c
106 ↗(On Diff #39574)

Good catch.

109 ↗(On Diff #39574)

Technically no. But it will be needed if anybody ever reenables WCAST_ALIGN and fixes the other violations.

This revision was automatically updated to reflect the committed changes.