Oops... had != but meant ==.
authorManuel Novoa III <mjn3@codepoet.org>
Sun, 23 Mar 2003 20:27:33 +0000 (20:27 -0000)
committerManuel Novoa III <mjn3@codepoet.org>
Sun, 23 Mar 2003 20:27:33 +0000 (20:27 -0000)
coreutils/df.c

index cbe3169..708e12c 100644 (file)
@@ -143,7 +143,7 @@ extern int df_main(int argc, char **argv)
                        if (strcmp(device, "/dev/root") == 0) {
                                /* Adjusts device to be the real root device,
                                * 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;
                                }
                        }