diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-11-02 21:46:42 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-11-03 21:51:28 +0100 |
commit | 3b3154df7e2773332bb814e167187367a0ccae4a (patch) | |
tree | a3c34ce14c37180f242243249a91b1031fa322f9 /src/journal/journald-server.c | |
parent | f49481d0ca170ea567b46fde6c1c089b1dbb49cb (diff) |
journald: constify all things!
Diffstat (limited to 'src/journal/journald-server.c')
-rw-r--r-- | src/journal/journald-server.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/journal/journald-server.c b/src/journal/journald-server.c index 12735c4b81..ac6dc3660f 100644 --- a/src/journal/journald-server.c +++ b/src/journal/journald-server.c @@ -537,8 +537,8 @@ static void write_to_journal(Server *s, uid_t uid, struct iovec *iovec, unsigned static void dispatch_message_real( Server *s, struct iovec *iovec, unsigned n, unsigned m, - struct ucred *ucred, - struct timeval *tv, + const struct ucred *ucred, + const struct timeval *tv, const char *label, size_t label_len, const char *unit_id, int priority, @@ -855,8 +855,8 @@ void server_driver_message(Server *s, sd_id128_t message_id, const char *format, void server_dispatch_message( Server *s, struct iovec *iovec, unsigned n, unsigned m, - struct ucred *ucred, - struct timeval *tv, + const struct ucred *ucred, + const struct timeval *tv, const char *label, size_t label_len, const char *unit_id, int priority, |