summaryrefslogtreecommitdiff
path: root/src/journal
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-07-11 01:05:01 +0200
committerGitHub <noreply@github.com>2019-07-11 01:05:01 +0200
commit8e27167cc9b8beda2bf49789b15f0b0301b95d17 (patch)
treee2f0e84c8a84e6ff3e1ba95c81cac685a94ee330 /src/journal
parentfeb0c8b86f05330c8c7581463b8adf35ea68e5a9 (diff)
parentb4f386d53b760201dbdb44a09448ed663284f6b0 (diff)
downloadsystemd-8e27167cc9b8beda2bf49789b15f0b0301b95d17.tar.gz
systemd-8e27167cc9b8beda2bf49789b15f0b0301b95d17.tar.bz2
systemd-8e27167cc9b8beda2bf49789b15f0b0301b95d17.zip
Merge pull request #13011 from keszybz/auto-erase
Remove string_erase and friends
Diffstat (limited to 'src/journal')
-rw-r--r--src/journal/journalctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c
index c25bbc3f26..3e1ca5b1ba 100644
--- a/src/journal/journalctl.c
+++ b/src/journal/journalctl.c
@@ -753,7 +753,7 @@ static int parse_argv(int argc, char *argv[]) {
r = free_and_strdup(&arg_verify_key, optarg);
if (r < 0)
return r;
- /* Use memset not string_erase so this doesn't look confusing
+ /* Use memset not explicit_bzero() or similar so this doesn't look confusing
* in ps or htop output. */
memset(optarg, 'x', strlen(optarg));