mirror of
https://github.com/systemd/systemd.git
synced 2025-03-19 22:50:17 +03: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:
parent
60ad0c85e5
commit
c6f7b693fe
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user