summaryrefslogtreecommitdiff
path: root/src/journal-remote
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-01-28 15:29:10 +0100
committerGitHub <noreply@github.com>2018-01-28 15:29:10 +0100
commit7755083256a89dfd8858cd62f1ee85c4b1327092 (patch)
tree49d7b0708cbf8db8193aedff7cd86ba909f7a85e /src/journal-remote
parent992f51ea423a64091924d94ce8238c77cfdf6748 (diff)
parentb4766d5f154c6645b73a81b706c1c43f6641a78a (diff)
downloadsystemd-7755083256a89dfd8858cd62f1ee85c4b1327092.tar.gz
Merge pull request #7881 from keszybz/pcre
Add new --grep option to journalctl
Diffstat (limited to 'src/journal-remote')
-rw-r--r--src/journal-remote/journal-gatewayd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/journal-remote/journal-gatewayd.c b/src/journal-remote/journal-gatewayd.c
index 82c70cfbe3..5a437ce031 100644
--- a/src/journal-remote/journal-gatewayd.c
+++ b/src/journal-remote/journal-gatewayd.c
@@ -226,7 +226,8 @@ static ssize_t request_reader_entries(
return MHD_CONTENT_READER_END_WITH_ERROR;
}
- r = output_journal(m->tmp, m->journal, m->mode, 0, OUTPUT_FULL_WIDTH, NULL, NULL);
+ r = output_journal(m->tmp, m->journal, m->mode, 0, OUTPUT_FULL_WIDTH,
+ NULL, NULL, NULL);
if (r < 0) {
log_error_errno(r, "Failed to serialize item: %m");
return MHD_CONTENT_READER_END_WITH_ERROR;