Merge pull request #16468 from keszybz/two-unrelated-patches

Two unrelated patches
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2020-07-15 13:40:22 +02:00 committed by GitHub
commit b8ff0663e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -167,6 +167,7 @@
<varlistentry>
<term><keycap>h</keycap></term>
<term><keycap>?</keycap></term>
<term><keycap>F1</keycap></term>
<listitem><para>Show a help screen</para></listitem>
</varlistentry>

View File

@ -858,7 +858,7 @@ static void test_path_is_encrypted_one(const char *p, int expect) {
return;
assert_se(r >= 0);
printf("%s encrypted: %s\n", p, yes_no(r));
log_info("%s encrypted: %s", p, yes_no(r));
assert_se(expect < 0 || ((r > 0) == (expect > 0)));
}