diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-02-06 13:35:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-06 13:35:56 +0100 |
commit | 9194199c9894c5fd4f497fbbf5fc0449686c8fe5 (patch) | |
tree | 28fcef4121e585704b6d695d2113a037a165141e /src/journal/journalctl.c | |
parent | 65c8834942a5ca2d2016f28c4dfc6738a717ed69 (diff) | |
parent | 1075122f42211ddb319126d6713a68a05056cd9d (diff) |
Merge pull request #5237 from keszybz/explicit-bzero
Use `explicit_bzero`
Diffstat (limited to 'src/journal/journalctl.c')
-rw-r--r-- | src/journal/journalctl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c index 2639fd6cf5..9ad6f115a1 100644 --- a/src/journal/journalctl.c +++ b/src/journal/journalctl.c @@ -686,7 +686,9 @@ static int parse_argv(int argc, char *argv[]) { r = free_and_strdup(&arg_verify_key, optarg); if (r < 0) return r; - string_erase(optarg); + /* Use memset not string_erase so this doesn't look confusing + * in ps or htop output. */ + memset(optarg, 'x', strlen(optarg)); arg_merge = false; break; |