Page MenuHomeFreeBSD

getlocalbase: Make default path actually configurable
ClosedPublic

Authored by jrtc27 on Jul 11 2023, 6:15 PM.
Tags
None
Referenced Files
F102652720: D40975.diff
Fri, Nov 15, 9:22 AM
Unknown Object (File)
Oct 2 2024, 3:38 PM
Unknown Object (File)
Sep 22 2024, 11:14 PM
Unknown Object (File)
Sep 22 2024, 11:14 PM
Unknown Object (File)
Sep 22 2024, 11:14 PM
Unknown Object (File)
Sep 22 2024, 11:05 PM
Unknown Object (File)
Sep 18 2024, 12:32 AM
Unknown Object (File)
Sep 17 2024, 2:09 PM
Subscribers

Details

Summary

We include paths.h in getlocalbase.c, which defines _PATH_LOCALBASE.
This will override a definition on the command line, meaning it is
impossible to override like how the manpage says you can, and it means
the code to provide a fallback default is dead as the macro is always
defined.

Instead, introduce a new LOCALBASE_PATH macro like LOCALBASE_CTL_LEN
that can be set on the command line and will default to the system's
existing _PATH_LOCALBASE to avoid duplicating the default here.

Diff Detail

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