summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2009-06-08 15:21:05 -1000
committerDavid Cantrell <dcantrell@redhat.com>2009-06-09 09:52:06 -1000
commit427ff7ab1576e22992a1ea8a2fdc0936a30ff421 (patch)
tree93db9f9df049e07cba211ada842779ca3ab5f76a /loader
parented9ab0664f2cad8f7ec6f43b253d2926240796c4 (diff)
downloadanaconda-427ff7ab1576e22992a1ea8a2fdc0936a30ff421.tar.gz
anaconda-427ff7ab1576e22992a1ea8a2fdc0936a30ff421.tar.xz
anaconda-427ff7ab1576e22992a1ea8a2fdc0936a30ff421.zip
Increase max NIC identification duration to 5 minutes (#473747).
loader was restricting users to a NIC identification duration of 1 to 30 seconds. This patch increases the maximum to 5 minutes.
Diffstat (limited to 'loader')
-rw-r--r--loader/net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/net.c b/loader/net.c
index 553192389..4a58c60be 100644
--- a/loader/net.c
+++ b/loader/net.c
@@ -1852,7 +1852,7 @@ int chooseNetworkInterface(struct loaderData_s * loaderData) {
continue;
}
- if (secs <=0 || secs > 30) {
+ if (secs <=0 || secs > 300) {
newtWinMessage(_("Invalid Duration"), _("OK"),
_("You must enter the number of "
"seconds as an integer between 1 "