diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-02 10:48:06 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-02 10:48:06 +0000 |
commit | 04158e04591efea20f34c8dc83002e19056a5590 (patch) | |
tree | 1deace5081207ddefa831e024e5914a11a8aaeeb /util-linux | |
parent | 512c8ae0537ad2ffcb70db03ca50b532781ae799 (diff) | |
download | busybox-04158e04591efea20f34c8dc83002e19056a5590.tar.gz |
udhcpd: add code which rejects lease files with suspicious or old timestamp.
*: s/time(0)/time(NULL)/g
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/rtcwake.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/rtcwake.c b/util-linux/rtcwake.c index 6c399c746..9a73ba29c 100644 --- a/util-linux/rtcwake.c +++ b/util-linux/rtcwake.c @@ -159,7 +159,7 @@ int rtcwake_main(int argc UNUSED_PARAM, char **argv) bb_error_msg_and_die("%s not enabled for wakeup events", rtcname); /* relative or absolute alarm time, normalized to time_t */ - sys_time = time(0); + sys_time = time(NULL); if (sys_time == (time_t)-1) bb_perror_msg_and_die("read system time"); rtc_time = rtc_read_time(fd, utc); |