From: Manuel Novoa III Date: Sun, 23 Mar 2003 20:27:33 +0000 (-0000) Subject: Oops... had != but meant ==. X-Git-Tag: 1_00_pre1~148 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3a9b0bf0ba475476c5922f229debeb8db1a2a5ca;p=oweals%2Fbusybox.git Oops... had != but meant ==. --- diff --git a/coreutils/df.c b/coreutils/df.c index cbe316920..708e12cc0 100644 --- a/coreutils/df.c +++ b/coreutils/df.c @@ -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; } }