diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-26 23:32:16 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-27 13:25:57 +0100 |
commit | 430f0182b72373145c839dbfe99d2382855cb8f8 (patch) | |
tree | da86be6519a80516ee477cb8bb5a1612eb52ce15 /src/import | |
parent | affb60b1ef0cb48388d23360c6f3b043c50f6b8c (diff) |
src/basic: rename audit.[ch] → audit-util.[ch] and capability.[ch] → capability-util.[ch]
The files are named too generically, so that they might conflict with
the upstream project headers. Hence, let's add a "-util" suffix, to
clarify that this are just our utility headers and not any official
upstream headers.
Diffstat (limited to 'src/import')
-rw-r--r-- | src/import/import-common.c | 2 | ||||
-rw-r--r-- | src/import/pull-common.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/import/import-common.c b/src/import/import-common.c index d96a000f81..a8551ca9e8 100644 --- a/src/import/import-common.c +++ b/src/import/import-common.c @@ -25,7 +25,7 @@ #include <unistd.h> #include "btrfs-util.h" -#include "capability.h" +#include "capability-util.h" #include "fd-util.h" #include "import-common.h" #include "signal-util.h" diff --git a/src/import/pull-common.c b/src/import/pull-common.c index 17283a4a24..f9c168e374 100644 --- a/src/import/pull-common.c +++ b/src/import/pull-common.c @@ -22,7 +22,7 @@ #include <sys/prctl.h> #include "btrfs-util.h" -#include "capability.h" +#include "capability-util.h" #include "copy.h" #include "dirent-util.h" #include "escape.h" |