diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-03-07 00:40:30 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-03-07 00:45:56 -0500 |
commit | 99613ec5d7f0c6e30801457f60c2cab7d8e50d8d (patch) | |
tree | 0fc50cca2b247306d5971d394595683367727a32 /src/journal | |
parent | f2e82cd5add31d704b39a91d570ab6649653fa49 (diff) |
libsystemd-journal: return 0 on success in get_data()
The man page says so. Right now 0 would be returned if the data was encrypted,
1 otherwise.
Diffstat (limited to 'src/journal')
-rw-r--r-- | src/journal/journalctl.c | 2 | ||||
-rw-r--r-- | src/journal/sd-journal.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c index cb93fea63b..c90fecd239 100644 --- a/src/journal/journalctl.c +++ b/src/journal/journalctl.c @@ -1103,7 +1103,7 @@ int main(int argc, char *argv[]) { int flags; if (need_seek) { - if(!arg_reverse) + if (!arg_reverse) r = sd_journal_next(j); else r = sd_journal_previous(j); diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index 19123544b3..fa04bfdfc8 100644 --- a/src/journal/sd-journal.c +++ b/src/journal/sd-journal.c @@ -1868,7 +1868,7 @@ _public_ int sd_journal_get_data(sd_journal *j, const char *field, const void ** *data = o->data.payload; *size = t; - return 1; + return 0; } r = journal_file_move_to_object(f, OBJECT_ENTRY, f->current_offset, &o); |