diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-02-01 03:33:24 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-02-01 03:33:24 +0100 |
commit | ea4309869e75497ba6a97c540646cb66a157a4d9 (patch) | |
tree | 8a00d7d42718d74e1b88ecb6e074ce9eb1b8a3fd /execute.c | |
parent | b9f880f4f4903f5dd8198fc1e2e920a9850ac86e (diff) |
add basic (and not very useful) D-Bus support
Diffstat (limited to 'execute.c')
-rw-r--r-- | execute.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -551,7 +551,7 @@ void exec_context_dump(ExecContext *c, FILE* f, const char *prefix) { for (i = 0; i < RLIM_NLIMITS; i++) if (c->rlimit[i]) - fprintf(f, "%s: %llu\n", rlimit_to_string(i), (unsigned long long) c->rlimit[i]->rlim_max); + fprintf(f, "%s%s: %llu\n", prefix, rlimit_to_string(i), (unsigned long long) c->rlimit[i]->rlim_max); if (c->ioprio_set) fprintf(f, |