chiark / gitweb /
sd-dhcp-client: drop logging about T1/T2
authorTom Gundersen <teg@jklm.no>
Sat, 12 Apr 2014 09:20:28 +0000 (11:20 +0200)
committerTom Gundersen <teg@jklm.no>
Sat, 12 Apr 2014 09:20:28 +0000 (11:20 +0200)
These are redundant now that the REQUEST messages contain the same information.

src/libsystemd-network/sd-dhcp-client.c

index 48de2131f60887713f850a6ba6bb48362056e879..c67de71dd3216d4572dff70077125caa9f30c35f 100644 (file)
@@ -744,8 +744,6 @@ static int client_timeout_t2(sd_event_source *s, uint64_t usec, void *userdata)
         }
         client->fd = r;
 
-        log_dhcp_client(client, "TIMEOUT T2");
-
         return client_initialize_events(client, client_receive_message_raw);
 }
 
@@ -767,8 +765,6 @@ static int client_timeout_t1(sd_event_source *s, uint64_t usec,
 
         client->fd = r;
 
-        log_dhcp_client(client, "TIMEOUT T1");
-
         return client_initialize_events(client, client_receive_message_udp);
 }