summaryrefslogtreecommitdiff
path: root/src/journal-remote/journal-gatewayd.c
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/journal-remote/journal-gatewayd.c
parent0a1beeb64207eaa88ab9236787b1cbc2f704ae14 (diff)
treewide: no need to negate errno for log_*_errno()
It corrrectly handles both positive and negative errno values.
Diffstat (limited to 'src/journal-remote/journal-gatewayd.c')
-rw-r--r--src/journal-remote/journal-gatewayd.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/journal-remote/journal-gatewayd.c b/src/journal-remote/journal-gatewayd.c
index 499a5fc6a..723b057c1 100644
--- a/src/journal-remote/journal-gatewayd.c
+++ b/src/journal-remote/journal-gatewayd.c
@@ -155,14 +155,14 @@ static ssize_t request_reader_entries(
r = sd_journal_next(m->journal);
if (r < 0) {
- log_error_errno(-r, "Failed to advance journal pointer: %m");
+ log_error_errno(r, "Failed to advance journal pointer: %m");
return MHD_CONTENT_READER_END_WITH_ERROR;
} else if (r == 0) {
if (m->follow) {
r = sd_journal_wait(m->journal, (uint64_t) -1);
if (r < 0) {
- log_error_errno(-r, "Couldn't wait for journal event: %m");
+ log_error_errno(r, "Couldn't wait for journal event: %m");
return MHD_CONTENT_READER_END_WITH_ERROR;
}
@@ -177,7 +177,7 @@ static ssize_t request_reader_entries(
r = sd_journal_test_cursor(m->journal, m->cursor);
if (r < 0) {
- log_error_errno(-r, "Failed to test cursor: %m");
+ log_error_errno(r, "Failed to test cursor: %m");
return MHD_CONTENT_READER_END_WITH_ERROR;
}
@@ -205,7 +205,7 @@ static ssize_t request_reader_entries(
r = output_journal(m->tmp, m->journal, m->mode, 0, OUTPUT_FULL_WIDTH, NULL);
if (r < 0) {
- log_error_errno(-r, "Failed to serialize item: %m");
+ log_error_errno(r, "Failed to serialize item: %m");
return MHD_CONTENT_READER_END_WITH_ERROR;
}
@@ -394,7 +394,7 @@ static int request_parse_arguments_iterator(
r = sd_id128_get_boot(&bid);
if (r < 0) {
- log_error_errno(-r, "Failed to get boot ID: %m");
+ log_error_errno(r, "Failed to get boot ID: %m");
return MHD_NO;
}
@@ -543,7 +543,7 @@ static ssize_t request_reader_fields(
r = sd_journal_enumerate_unique(m->journal, &d, &l);
if (r < 0) {
- log_error_errno(-r, "Failed to advance field index: %m");
+ log_error_errno(r, "Failed to advance field index: %m");
return MHD_CONTENT_READER_END_WITH_ERROR;
} else if (r == 0)
return MHD_CONTENT_READER_END_OF_STREAM;
@@ -566,7 +566,7 @@ static ssize_t request_reader_fields(
r = output_field(m->tmp, m->mode, d, l);
if (r < 0) {
- log_error_errno(-r, "Failed to serialize item: %m");
+ log_error_errno(r, "Failed to serialize item: %m");
return MHD_CONTENT_READER_END_WITH_ERROR;
}
@@ -910,7 +910,7 @@ static int parse_argv(int argc, char *argv[]) {
}
r = read_full_file(optarg, &key_pem, NULL);
if (r < 0) {
- log_error_errno(-r, "Failed to read key file: %m");
+ log_error_errno(r, "Failed to read key file: %m");
return r;
}
assert(key_pem);
@@ -923,7 +923,7 @@ static int parse_argv(int argc, char *argv[]) {
}
r = read_full_file(optarg, &cert_pem, NULL);
if (r < 0) {
- log_error_errno(-r, "Failed to read certificate file: %m");
+ log_error_errno(r, "Failed to read certificate file: %m");
return r;
}
assert(cert_pem);
@@ -937,7 +937,7 @@ static int parse_argv(int argc, char *argv[]) {
}
r = read_full_file(optarg, &trust_pem, NULL);
if (r < 0) {
- log_error_errno(-r, "Failed to read CA certificate file: %m");
+ log_error_errno(r, "Failed to read CA certificate file: %m");
return r;
}
assert(trust_pem);
@@ -992,7 +992,7 @@ int main(int argc, char *argv[]) {
n = sd_listen_fds(1);
if (n < 0) {
- log_error_errno(-n, "Failed to determine passed sockets: %m");
+ log_error_errno(n, "Failed to determine passed sockets: %m");
goto finish;
} else if (n > 1) {
log_error("Can't listen on more than one socket.");