diff options
| author | David Cantrell <dcantrell@redhat.com> | 2009-06-08 15:21:05 -1000 |
|---|---|---|
| committer | David Cantrell <dcantrell@redhat.com> | 2009-06-09 09:52:06 -1000 |
| commit | 427ff7ab1576e22992a1ea8a2fdc0936a30ff421 (patch) | |
| tree | 93db9f9df049e07cba211ada842779ca3ab5f76a /loader | |
| parent | ed9ab0664f2cad8f7ec6f43b253d2926240796c4 (diff) | |
| download | anaconda-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.c | 2 |
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 " |
