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:
parent
a30fdf857b
commit
516bb9c0be
@ -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");
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user