Page MenuHomeFreeBSD

libalias: replace placeholder with static constant
ClosedPublic

Authored by donner on May 13 2021, 9:50 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Jun 8, 9:52 AM
Unknown Object (File)
Wed, May 22, 4:27 AM
Unknown Object (File)
Tue, May 21, 7:07 PM
Unknown Object (File)
Tue, May 21, 7:07 PM
Unknown Object (File)
Tue, May 21, 7:07 PM
Unknown Object (File)
Tue, May 21, 12:52 PM
Unknown Object (File)
Tue, May 21, 10:51 AM
Unknown Object (File)
May 4 2024, 7:47 AM

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.