Page MenuHomeFreeBSD

libalias: replace placeholder with static constant
ClosedPublic

Authored by donner on May 13 2021, 9:50 PM.
Tags
None
Referenced Files
F170767331: D30253.id.diff
Sun, Sep 6, 12:42 PM
F170635997: D30253.diff
Sat, Sep 5, 6:10 PM
F170635962: D30253.diff
Sat, Sep 5, 6:10 PM
F170635754: D30253.id.diff
Sat, Sep 5, 6:08 PM
Unknown Object (File)
Sat, Sep 5, 1:36 PM
Unknown Object (File)
Sat, Sep 5, 4:04 AM
Unknown Object (File)
Fri, Sep 4, 3:27 AM
Unknown Object (File)
Thu, Sep 3, 3:19 PM

Details

Summary

The field nullAddress in struct libalias is never set and never used.
It exists as a placeholder for an unused argument only.

Test Plan

Just recompile everything.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

sys/netinet/libalias/alias_db.c
227

Should it be:
static const struct in_addr ???

  • Silence warning about non-static declaration.
donner added inline comments.
sys/netinet/libalias/alias_db.c
227

The compiler had the same question. Thank you for spotting this.

sys/netinet/libalias/alias_db.c
229

Should you also add "const" keyword here?

donner marked an inline comment as done.
  • Make it const.

Rebased to D30259

sys/netinet/libalias/alias_db.c
229

You are right. Added const.

This revision is now accepted and ready to land.May 14 2021, 2:16 PM
This revision was automatically updated to reflect the committed changes.
donner marked an inline comment as done.