From 609896125cb89cac2fcd5b80b532de97d7a64c0a Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Sat, 24 May 2014 10:26:33 +0800 Subject: clock-util: clock_[sg]et_time() -> clock_[sg]et_hwclock() --- src/shared/clock-util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/shared/clock-util.c') diff --git a/src/shared/clock-util.c b/src/shared/clock-util.c index 4f31c10b81..e66db63ba0 100644 --- a/src/shared/clock-util.c +++ b/src/shared/clock-util.c @@ -43,7 +43,7 @@ #include "clock-util.h" #include "fileio.h" -int clock_get_time(struct tm *tm) { +int clock_get_hwclock(struct tm *tm) { _cleanup_close_ int fd = -1; assert(tm); @@ -64,7 +64,7 @@ int clock_get_time(struct tm *tm) { return 0; } -int clock_set_time(const struct tm *tm) { +int clock_set_hwclock(const struct tm *tm) { _cleanup_close_ int fd = -1; assert(tm); -- cgit v1.2.3-54-g00ecf