From 31a0dfa533cb0073cb0452ac65a98c21edacae6d Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Tue, 4 Jan 2011 18:51:51 -0600 Subject: [PATCH] wimax: reduce connect timeout a bit --- src/wimax/nm-device-wimax.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wimax/nm-device-wimax.c b/src/wimax/nm-device-wimax.c index e92577c608..71525c38e5 100644 --- a/src/wimax/nm-device-wimax.c +++ b/src/wimax/nm-device-wimax.c @@ -566,8 +566,8 @@ real_act_stage2_config (NMDevice *device, NMDeviceStateReason *reason) return NM_ACT_STAGE_RETURN_FAILURE; } - /* FIXME: Is 60 seconds good estimation? I have no idea */ - priv->activation_timeout_id = g_timeout_add_seconds (60, activation_timed_out, device); + /* FIXME: Is 40 seconds good estimation? I have no idea */ + priv->activation_timeout_id = g_timeout_add_seconds (40, activation_timed_out, device); return NM_ACT_STAGE_RETURN_POSTPONE; }