summaryrefslogtreecommitdiff
path: root/src/dhcpv6.c
diff options
context:
space:
mode:
authorGrant Erickson <marathon96@gmail.com>2012-02-28 09:55:53 -0800
committerDaniel Wagner <daniel.wagner@bmw-carit.de>2012-03-01 13:45:25 +0100
commit02e24d57300da7571990d066d7e14bb56bdfc2c7 (patch)
tree2970e9c75034291672f5b047e5a909b8f5a022e4 /src/dhcpv6.c
parent7bf4c0642ef6a7c60b382dfb4bc8dab414691e3f (diff)
downloadconnman-02e24d57300da7571990d066d7e14bb56bdfc2c7.tar.gz
connman-02e24d57300da7571990d066d7e14bb56bdfc2c7.tar.bz2
connman-02e24d57300da7571990d066d7e14bb56bdfc2c7.zip
core: Change coding style for passing NULL to time
Pass NULL rather than 0 when calling time(2) to follow prefered stylistic convention.
Diffstat (limited to 'src/dhcpv6.c')
-rw-r--r--src/dhcpv6.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dhcpv6.c b/src/dhcpv6.c
index aab58686..462b78d7 100644
--- a/src/dhcpv6.c
+++ b/src/dhcpv6.c
@@ -606,7 +606,7 @@ static int check_restart(struct connman_dhcpv6 *dhcp)
g_dhcpv6_client_get_timeouts(dhcp->dhcp_client, NULL, NULL,
NULL, NULL, &expired);
- current = time(0);
+ current = time(NULL);
if (current > expired) {
DBG("expired by %d secs", (int)(current - expired));
@@ -816,7 +816,7 @@ int __connman_dhcpv6_start_renew(struct connman_network *network,
g_dhcpv6_client_get_timeouts(dhcp->dhcp_client, &T1, &T2,
&last_renew, &last_rebind, &expired);
- current = time(0);
+ current = time(NULL);
DBG("T1 %u T2 %u expires %lu current %lu", T1, T2,
(unsigned long)expired, current);
@@ -1207,7 +1207,7 @@ int __connman_dhcpv6_init(void)
{
DBG("");
- srand(time(0));
+ srand(time(NULL));
network_table = g_hash_table_new_full(g_direct_hash, g_direct_equal,
NULL, remove_network);