1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-03 05:18:09 +03:00

Simplify a couple of conditions

This commit is contained in:
Frantisek Sumsal 2024-04-02 18:07:50 +02:00
parent a30fdf857b
commit 516bb9c0be
2 changed files with 3 additions and 5 deletions

View File

@ -401,10 +401,8 @@ static int parse_credentials(void) {
int r;
r = read_credential_with_decryption("ssh.listen", (void*) &b, &sz);
if (r < 0)
if (r <= 0)
return r;
if (r == 0)
return 0;
_cleanup_fclose_ FILE *f = NULL;
f = fmemopen_unlocked(b, sz, "r");

View File

@ -68,7 +68,7 @@ TEST (test_dirent_is_file) {
}
dir = opendir(t);
if (dir == NULL) {
if (!dir) {
log_error_errno(errno, "Failed to open directory '%s': %m", t);
exit(EXIT_FAILURE);
}
@ -144,7 +144,7 @@ TEST (test_dirent_is_file_with_suffix) {
}
dir = opendir(t);
if (dir == NULL) {
if (!dir) {
log_error_errno(errno, "Failed to open directory '%s': %m", t);
exit(EXIT_FAILURE);
}