diff options
author | Daniel Buch <boogiewasthere@gmail.com> | 2013-11-26 09:38:02 +0100 |
---|---|---|
committer | David Strauss <david@davidstrauss.net> | 2013-11-26 21:07:46 +1000 |
commit | f5f6d0e25574dd63fb605b81fa7767dd71c454db (patch) | |
tree | 3ec0b42888ce9b6895ec264c2a18a394c6d3db3e /src/core/service.c | |
parent | 34a6dc7dcaa47a9efe083acc6f5fc6263414465e (diff) |
tree-wide usage of %m specifier instead of strerror(errno)
Also for log_error() except where a specific error is specified
e.g. errno ? strerror(errno) : "Some user specified message"
Diffstat (limited to 'src/core/service.c')
-rw-r--r-- | src/core/service.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/service.c b/src/core/service.c index 28b1465c19..7c5d5d8681 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -3507,7 +3507,7 @@ static int service_enumerate(Manager *m) { d = opendir(path); if (!d) { if (errno != ENOENT) - log_warning("opendir(%s) failed: %s", path, strerror(errno)); + log_warning("opendir(%s) failed: %m", path); continue; } @@ -3540,7 +3540,7 @@ static int service_enumerate(Manager *m) { if (access(fpath, X_OK) < 0) { if (errno != ENOENT) - log_warning("access() failed on %s: %s", fpath, strerror(errno)); + log_warning("access() failed on %s: %m", fpath); continue; } |