From 58c7871aa8b67eda376f39e9152d4ee81f7d4d54 Mon Sep 17 00:00:00 2001 From: ms Date: Sat, 25 Aug 2007 21:44:14 +0000 Subject: [PATCH] Diskgroessen angepasst. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@832 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8 --- src/install+setup/install/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/install+setup/install/main.c b/src/install+setup/install/main.c index ca7e13735..c373e58bd 100644 --- a/src/install+setup/install/main.c +++ b/src/install+setup/install/main.c @@ -354,7 +354,7 @@ int main(int argc, char *argv[]) /* Calculating Swap-Size dependend of Ram Size */ if (memory < 128) swap_file = 32; - else if (memory > 1024) + else if (memory >= 1024) swap_file = 512; else swap_file = memory; @@ -362,7 +362,7 @@ int main(int argc, char *argv[]) /* Calculating Root-Size dependend of Max Disk Space */ if ( disk < 1024 ) root_partition = 256; - else if ( disk > 1024 && disk < 3072 ) + else if ( disk >= 1024 && disk <= 3072 ) root_partition = 512; else root_partition = 2048; @@ -378,7 +378,7 @@ int main(int argc, char *argv[]) if ( (!unattended) && (((disk - (root_partition + swap_file + boot_partition)) < 256 ) && ((disk - (root_partition + boot_partition)) > 256)) ) { rc = newtWinChoice(title, ctr[TR_CONTINUE_NO_SWAP], ctr[TR_OK], ctr[TR_CANCEL]); } - else if (disk - (root_partition + swap_file + boot_partition) > 256) { + else if (disk - (root_partition + swap_file + boot_partition) >= 256) { } else {