mirror of
https://github.com/clearlinux/systemd-stable.git
synced 2026-09-06 21:51:37 +00:00
sd-dhcp: make sure client->secs > 0
Some DHCP servers will not work correctly if secs == 0, so round up to at least 1.
This commit is contained in:
@@ -338,7 +338,7 @@ static int client_send_request(sd_dhcp_client *client, uint16_t secs) {
|
||||
|
||||
static uint16_t client_update_secs(sd_dhcp_client *client, usec_t time_now)
|
||||
{
|
||||
client->secs = (time_now - client->start_time) / USEC_PER_SEC;
|
||||
client->secs = ((time_now - client->start_time) / USEC_PER_SEC) ? : 1;
|
||||
|
||||
return client->secs;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user