summaryrefslogtreecommitdiff
path: root/src/journal/journalctl.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-03-07 00:40:30 -0500
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-03-07 00:45:56 -0500
commit99613ec5d7f0c6e30801457f60c2cab7d8e50d8d (patch)
tree0fc50cca2b247306d5971d394595683367727a32 /src/journal/journalctl.c
parentf2e82cd5add31d704b39a91d570ab6649653fa49 (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/journalctl.c')
-rw-r--r--src/journal/journalctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c
index cb93fea63..c90fecd23 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);