summaryrefslogtreecommitdiff
path: root/tools/dhcp-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/dhcp-test.c')
-rw-r--r--tools/dhcp-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/dhcp-test.c b/tools/dhcp-test.c
index 284656b3..c34e10a8 100644
--- a/tools/dhcp-test.c
+++ b/tools/dhcp-test.c
@@ -102,7 +102,7 @@ static void lease_available_cb(GDHCPClient *dhcp_client, gpointer user_data)
address = g_dhcp_client_get_address(dhcp_client);
printf("address %s\n", address);
- if (address == NULL)
+ if (!address)
return;
option_value = g_dhcp_client_get_option(dhcp_client, G_DHCP_SUBNET);
@@ -143,7 +143,7 @@ int main(int argc, char *argv[])
printf("Create DHCP client for interface %d\n", index);
dhcp_client = g_dhcp_client_new(G_DHCP_IPV4, index, &error);
- if (dhcp_client == NULL) {
+ if (!dhcp_client) {
handle_error(error);
exit(0);
}