X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fmodules-load%2Fmodules-load.c;h=76e940336103eec835d6289e1f8316ff849c59d8;hb=2eec67acbb00593e414549a7e5b35eb7dd776b1b;hp=1fd01adbe443862143eba0700b00ed79eda13edf;hpb=f647962d64e844689f3e2acfce6102fc47e76df2;p=elogind.git diff --git a/src/modules-load/modules-load.c b/src/modules-load/modules-load.c index 1fd01adbe..76e940336 100644 --- a/src/modules-load/modules-load.c +++ b/src/modules-load/modules-load.c @@ -19,13 +19,10 @@ along with systemd; If not, see . ***/ -#include -#include #include #include #include #include -#include #include #include @@ -33,7 +30,6 @@ #include "util.h" #include "strv.h" #include "conf-files.h" -#include "fileio.h" #include "build.h" static char **arg_proc_cmdline_modules = NULL; @@ -139,8 +135,7 @@ static int apply_file(struct kmod_ctx *ctx, const char *path, bool ignore_enoent if (ignore_enoent && r == -ENOENT) return 0; - log_error_errno(r, "Failed to open %s, ignoring: %m", path); - return r; + return log_error_errno(r, "Failed to open %s, ignoring: %m", path); } log_debug("apply: %s", path); @@ -152,7 +147,7 @@ static int apply_file(struct kmod_ctx *ctx, const char *path, bool ignore_enoent if (feof(f)) break; - log_error("Failed to read file '%s', ignoring: %m", path); + log_error_errno(errno, "Failed to read file '%s', ignoring: %m", path); return -errno; }