From: Michael Tremer Date: Fri, 17 Mar 2023 12:03:03 +0000 (+0000) Subject: FHS: Fix indentation X-Git-Tag: 0.9.29~280 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=513dc5a9e20fd20061d17b34837b2dad7243ed6e;p=pakfire.git FHS: Fix indentation Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/fhs.c b/src/libpakfire/fhs.c index 75d3fbf82..c8f8b48e5 100644 --- a/src/libpakfire/fhs.c +++ b/src/libpakfire/fhs.c @@ -58,8 +58,8 @@ static const struct pakfire_fhs_check { { "/usr/src/**", 0, 0, NULL, NULL, PAKFIRE_FHS_MUSTNOTEXIST }, // There cannot be any subdirectories in /usr/bin & /usr/sbin - { "/usr/bin/*", S_IFDIR, 0, NULL, NULL, PAKFIRE_FHS_MUSTNOTEXIST }, - { "/usr/sbin/*", S_IFDIR, 0, NULL, NULL, PAKFIRE_FHS_MUSTNOTEXIST }, + { "/usr/bin/*", S_IFDIR, 0, NULL, NULL, PAKFIRE_FHS_MUSTNOTEXIST }, + { "/usr/sbin/*", S_IFDIR, 0, NULL, NULL, PAKFIRE_FHS_MUSTNOTEXIST }, // Any files in /usr/{,s}bin must be owned by root and have 0755 { "/usr/bin/*", S_IFREG, 0755, "root", "root", 0 },