mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 03:40:07 +01:00
wimax: fix link timeout interval
Should be seconds, not milliseconds.
This commit is contained in:
parent
a8256961f6
commit
c2d2f403a5
1 changed files with 1 additions and 1 deletions
|
|
@ -1009,7 +1009,7 @@ wmx_media_status_cb (struct wmxsdk *wmxsdk,
|
|||
break;
|
||||
case WIMAX_API_MEDIA_STATUS_LINK_DOWN:
|
||||
nm_log_dbg (LOGD_WIMAX, "(%s): starting link timeout", iface);
|
||||
priv->link_timeout_id = g_timeout_add (15, link_timeout_cb, self);
|
||||
priv->link_timeout_id = g_timeout_add_seconds (15, link_timeout_cb, self);
|
||||
break;
|
||||
case WIMAX_API_MEDIA_STATUS_LINK_RENEW:
|
||||
nm_log_dbg (LOGD_WIMAX, "(%s): renewing DHCP lease", iface);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue