]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/journal-util.h
journalctl: improve hint about lack of access for --user-unit=...
[thirdparty/systemd.git] / src / shared / journal-util.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
4f37cbd9
ZJS
2/***
3 This file is part of systemd.
4
5 Copyright 2013 Zbigniew Jędrzejewski-Szmek
6 Copyright 2015 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
22#include <stdbool.h>
53978b98 23#include <sys/types.h>
4f37cbd9
ZJS
24
25#include "sd-journal.h"
26
53978b98
LP
27bool journal_field_valid(const char *p, size_t l, bool allow_protected);
28
e79d0b59 29int journal_access_check_and_warn(sd_journal *j, bool quiet, bool want_other_users);