diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-03-10 13:04:33 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-03-10 13:04:33 +0000 |
commit | f82b21e51d9a86f2857a47f05003ea02b305bf39 (patch) | |
tree | 9286b7468014b2aa9e9f9252cb6da0878125d925 | |
parent | 8852bdc7a4a42e501e35683570e15b3371068336 (diff) | |
download | drakx-f82b21e51d9a86f2857a47f05003ea02b305bf39.tar drakx-f82b21e51d9a86f2857a47f05003ea02b305bf39.tar.gz drakx-f82b21e51d9a86f2857a47f05003ea02b305bf39.tar.bz2 drakx-f82b21e51d9a86f2857a47f05003ea02b305bf39.tar.xz drakx-f82b21e51d9a86f2857a47f05003ea02b305bf39.zip |
fix messages
-rw-r--r-- | mdk-stage1/thirdparty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mdk-stage1/thirdparty.c b/mdk-stage1/thirdparty.c index db2585187..aaeedde7a 100644 --- a/mdk-stage1/thirdparty.c +++ b/mdk-stage1/thirdparty.c @@ -53,7 +53,7 @@ static enum return_type third_party_get_device(char ** device) *device = floppy_dev; return RETURN_OK; } else { - stg1_error_message("I can't any floppy or disk on this system. " + stg1_error_message("I can't find any floppy or disk on this system. " "No third-party kernel modules will be used."); return RETURN_ERROR; } @@ -125,7 +125,7 @@ void thirdparty_load_modules(void) modules = list_directory(mount_location); if (!modules || !*modules) { - stg1_error_message("No modules found on floppy disk."); + stg1_error_message("No modules found on disk."); umount(mount_location); return thirdparty_load_modules(); } |