summaryrefslogtreecommitdiff
path: root/src/binfmt
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2014-10-29 05:02:56 -0700
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2014-11-26 19:11:37 -0500
commit7f0a55d4325f7df91f91b3b818f61f97d78df14a (patch)
treef88b96f4a0002b49749d78622fd174d54062e9f8 /src/binfmt
parent3d82301321afdcc4f2f8786883bd15b1a64c6e83 (diff)
Introduce CONF_DIRS_NULSTR helper to define standard conf dirs
Several different systemd tools define a nulstr containing a standard series of configuration file directories, in /etc, /run, /usr/local/lib, /usr/lib, and (#ifdef HAVE_SPLIT_USR) /lib. Factor that logic out into a new helper macro, CONF_DIRS_NULSTR.
Diffstat (limited to 'src/binfmt')
-rw-r--r--src/binfmt/binfmt.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/binfmt/binfmt.c b/src/binfmt/binfmt.c
index c1c152239b..0a15fafc60 100644
--- a/src/binfmt/binfmt.c
+++ b/src/binfmt/binfmt.c
@@ -36,15 +36,7 @@
#include "fileio.h"
#include "build.h"
-static const char conf_file_dirs[] =
- "/etc/binfmt.d\0"
- "/run/binfmt.d\0"
- "/usr/local/lib/binfmt.d\0"
- "/usr/lib/binfmt.d\0"
-#ifdef HAVE_SPLIT_USR
- "/lib/binfmt.d\0"
-#endif
- ;
+static const char conf_file_dirs[] = CONF_DIRS_NULSTR("binfmt");
static int delete_rule(const char *rule) {
_cleanup_free_ char *x = NULL, *fn = NULL;