diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-03-17 13:26:36 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-03-17 13:26:36 +0000 |
commit | 31591e97e99f2c0d44827c86ccf2a5c5f6dae616 (patch) | |
tree | 093327a79d1bef89a47aabbe955cf2559bd90c11 /mdk-stage1 | |
parent | 33cedf812368e928c9f15f5bc39f81e1d5ba3ece (diff) | |
download | drakx-31591e97e99f2c0d44827c86ccf2a5c5f6dae616.tar drakx-31591e97e99f2c0d44827c86ccf2a5c5f6dae616.tar.gz drakx-31591e97e99f2c0d44827c86ccf2a5c5f6dae616.tar.bz2 drakx-31591e97e99f2c0d44827c86ccf2a5c5f6dae616.tar.xz drakx-31591e97e99f2c0d44827c86ccf2a5c5f6dae616.zip |
fix return code check
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/thirdparty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/thirdparty.c b/mdk-stage1/thirdparty.c index 00c8c9db3..5bdab55ad 100644 --- a/mdk-stage1/thirdparty.c +++ b/mdk-stage1/thirdparty.c @@ -161,7 +161,7 @@ static enum return_type third_party_choose_device(char ** device) static enum return_type thirdparty_mount_device(char * device) { log_message("third party: trying to mount device %s", device); - if (try_mount(device, THIRDPARTY_MOUNT_LOCATION) == -1) { + if (!try_mount(device, THIRDPARTY_MOUNT_LOCATION)) { stg1_error_message("I can't mount the selected device (%s).", device); return RETURN_ERROR; } |