diff options
author | Anita Zhang <the.anitazha@gmail.com> | 2019-11-07 07:25:43 +0100 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2019-11-07 11:17:44 +0100 |
commit | 0499585ffe5fd1acc45f49e977ac3a88955f8fa9 (patch) | |
tree | 574d12039df4aab5f8f018ecc745007ba646acb7 /src/import/export-raw.c | |
parent | Merge pull request #13904 from keur/job_mode_triggering (diff) | |
download | systemd-0499585ffe5fd1acc45f49e977ac3a88955f8fa9.tar.xz systemd-0499585ffe5fd1acc45f49e977ac3a88955f8fa9.zip |
include missing_fcntl.h where needed
f5947a5e925117c55b390460d592f57504277bf9 dropped missing.h and
replaced with the more specific headers but did not add
missing_fcntl.h in places that use O_TMPFILE. This is needed for
some older versions of glibc.
Diffstat (limited to 'src/import/export-raw.c')
-rw-r--r-- | src/import/export-raw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/import/export-raw.c b/src/import/export-raw.c index 68425953a6..a0ac6bc7f4 100644 --- a/src/import/export-raw.c +++ b/src/import/export-raw.c @@ -17,6 +17,7 @@ #include "fd-util.h" #include "fs-util.h" #include "import-common.h" +#include "missing_fcntl.h" #include "ratelimit.h" #include "stat-util.h" #include "string-util.h" |