summaryrefslogtreecommitdiff
path: root/src/tmpfiles
diff options
context:
space:
mode:
authorMichal Schmidt <mschmidt@redhat.com>2014-11-28 13:19:16 +0100
committerMichal Schmidt <mschmidt@redhat.com>2014-11-28 13:29:21 +0100
commitda927ba997d68401563b927f92e6e40e021a8e5c (patch)
tree71764cd998aef07b8943c5206c9307a93ba9c528 /src/tmpfiles
parent0a1beeb64207eaa88ab9236787b1cbc2f704ae14 (diff)
treewide: no need to negate errno for log_*_errno()
It corrrectly handles both positive and negative errno values.
Diffstat (limited to 'src/tmpfiles')
-rw-r--r--src/tmpfiles/tmpfiles.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c
index c44dcff514..34a644b26b 100644
--- a/src/tmpfiles/tmpfiles.c
+++ b/src/tmpfiles/tmpfiles.c
@@ -668,7 +668,7 @@ static int create_item(Item *i) {
struct stat a, b;
if (r != -EEXIST) {
- log_error_errno(-r, "Failed to copy files to %s: %m", i->path);
+ log_error_errno(r, "Failed to copy files to %s: %m", i->path);
return -r;
}
@@ -711,7 +711,7 @@ static int create_item(Item *i) {
if (r < 0) {
if (r != -EEXIST) {
- log_error_errno(-r, "Failed to create directory %s: %m", i->path);
+ log_error_errno(r, "Failed to create directory %s: %m", i->path);
return r;
}
@@ -762,7 +762,7 @@ static int create_item(Item *i) {
}
if (r < 0) {
- log_error_errno(-r, "Failed to create fifo %s: %m", i->path);
+ log_error_errno(r, "Failed to create fifo %s: %m", i->path);
return r;
}
} else {
@@ -801,7 +801,7 @@ static int create_item(Item *i) {
mac_selinux_create_file_clear();
if (r < 0) {
- log_error_errno(-r, "symlink(%s, %s) failed: %m", i->argument, i->path);
+ log_error_errno(r, "symlink(%s, %s) failed: %m", i->argument, i->path);
return r;
}
} else {
@@ -863,7 +863,7 @@ static int create_item(Item *i) {
}
if (r < 0) {
- log_error_errno(-r, "Failed to create device node %s: %m", i->path);
+ log_error_errno(r, "Failed to create device node %s: %m", i->path);
return r;
}
} else {
@@ -939,7 +939,7 @@ static int remove_item_instance(Item *i, const char *instance) {
* instead of rm_rf() so that 'x' is honoured. */
r = rm_rf_dangerous(instance, false, i->type == RECURSIVE_REMOVE_PATH, false);
if (r < 0 && r != -ENOENT) {
- log_error_errno(-r, "rm_rf(%s): %m", instance);
+ log_error_errno(r, "rm_rf(%s): %m", instance);
return r;
}
@@ -1398,7 +1398,7 @@ static int parse_line(const char *fname, unsigned line, const char *buffer) {
r = hashmap_put(h, i->path, i);
if (r < 0) {
- log_error_errno(-r, "Failed to insert item %s: %m", i->path);
+ log_error_errno(r, "Failed to insert item %s: %m", i->path);
return r;
}
@@ -1531,7 +1531,7 @@ static int read_config_file(const char *fn, bool ignore_enoent) {
if (ignore_enoent && r == -ENOENT)
return 0;
- log_error_errno(-r, "Failed to open '%s', ignoring: %m", fn);
+ log_error_errno(r, "Failed to open '%s', ignoring: %m", fn);
return r;
}
@@ -1629,7 +1629,7 @@ int main(int argc, char *argv[]) {
r = conf_files_list_nulstr(&files, ".conf", arg_root, conf_file_dirs);
if (r < 0) {
- log_error_errno(-r, "Failed to enumerate tmpfiles.d files: %m");
+ log_error_errno(r, "Failed to enumerate tmpfiles.d files: %m");
goto finish;
}