aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-03-23 20:27:33 +0000
committermjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-03-23 20:27:33 +0000
commit448db6218913e1eabe9cdc49e16c49b639b8458c (patch)
treedc61631429afc37cd009f60212dedbb0f8c84448
parentbb323ec800c216f4ea3cd63c34564d6ba7aace63 (diff)
downloadbusybox-w32-448db6218913e1eabe9cdc49e16c49b639b8458c.tar.gz
busybox-w32-448db6218913e1eabe9cdc49e16c49b639b8458c.tar.bz2
busybox-w32-448db6218913e1eabe9cdc49e16c49b639b8458c.zip
Oops... had != but meant ==.
git-svn-id: svn://busybox.net/trunk/busybox@6757 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--coreutils/df.c2
1 files changed, 1 insertions, 1 deletions
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)
143 if (strcmp(device, "/dev/root") == 0) { 143 if (strcmp(device, "/dev/root") == 0) {
144 /* Adjusts device to be the real root device, 144 /* Adjusts device to be the real root device,
145 * or leaves device alone if it can't find it */ 145 * or leaves device alone if it can't find it */
146 if ((device = find_real_root_device_name(device)) != NULL) { 146 if ((device = find_real_root_device_name(device)) == NULL) {
147 goto SET_ERROR; 147 goto SET_ERROR;
148 } 148 }
149 } 149 }