mirror of
https://github.com/systemd/systemd.git
synced 2024-12-04 15:53:41 +08:00
gpt-auto-generator: fix the handling of the value returned by fstab_has_fstype() in add_swap() (#6280)
fstab_has_fstype() returns '1' if fstab contains the passed fstype, not '0'.
This commit is contained in:
parent
65e1dee7dc
commit
1a680ae367
@ -309,7 +309,7 @@ static int add_swap(const char *path) {
|
||||
r = fstab_has_fstype("swap");
|
||||
if (r < 0)
|
||||
return log_error_errno(r, "Failed to parse fstab: %m");
|
||||
if (r == 0) {
|
||||
if (r > 0) {
|
||||
log_debug("swap specified in fstab, ignoring.");
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user