mirror of
https://github.com/sheumann/hush.git
synced 2025-01-13 21:31:51 +00:00
Oops... had != but meant ==.
This commit is contained in:
parent
4baef0c77f
commit
3a9b0bf0ba
@ -143,7 +143,7 @@ extern int df_main(int argc, char **argv)
|
|||||||
if (strcmp(device, "/dev/root") == 0) {
|
if (strcmp(device, "/dev/root") == 0) {
|
||||||
/* Adjusts device to be the real root device,
|
/* Adjusts device to be the real root device,
|
||||||
* or leaves device alone if it can't find it */
|
* or leaves device alone if it can't find it */
|
||||||
if ((device = find_real_root_device_name(device)) != NULL) {
|
if ((device = find_real_root_device_name(device)) == NULL) {
|
||||||
goto SET_ERROR;
|
goto SET_ERROR;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user