diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-03-01 14:37:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-01 14:37:15 +0100 |
commit | ecadd9b3fd394fd5fdef87cf9f1fb764b0bb83f0 (patch) | |
tree | 677e04403d44556906c68ae8ceb154dcffff37b7 /src/shared/journal-util.h | |
parent | 92d6f2f34895a5f126493a2fd7ff8fb660a84a22 (diff) | |
parent | eb5877a024a6da2177bf309a97ebd3e0641d7f2c (diff) |
Merge pull request #5458 from keszybz/coredump
Fix for coredump crash
Diffstat (limited to 'src/shared/journal-util.h')
-rw-r--r-- | src/shared/journal-util.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/shared/journal-util.h b/src/shared/journal-util.h new file mode 100644 index 0000000000..499e6c62ec --- /dev/null +++ b/src/shared/journal-util.h @@ -0,0 +1,25 @@ +/*** + This file is part of systemd. + + Copyright 2013 Zbigniew Jędrzejewski-Szmek + Copyright 2015 Lennart Poettering + + systemd is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or + (at your option) any later version. + + systemd is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with systemd; If not, see <http://www.gnu.org/licenses/>. +***/ + +#include <stdbool.h> + +#include "sd-journal.h" + +int journal_access_check_and_warn(sd_journal *j, bool quiet); |