summaryrefslogtreecommitdiff
path: root/src/timedated.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-06-16 22:15:43 +0200
committerLennart Poettering <lennart@poettering.net>2011-06-21 19:29:45 +0200
commit05a4abb9146eebd75f5d9b9cac38f183818a9f6d (patch)
tree394b3fd960297da75e33ed84d2577b4cda9c4f57 /src/timedated.c
parent2076cf883110bd6fc0f87b619005baf2117d6b95 (diff)
timedated: rename a few things for clarification
Diffstat (limited to 'src/timedated.c')
-rw-r--r--src/timedated.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/timedated.c b/src/timedated.c
index ad7b881da..daa3d9c82 100644
--- a/src/timedated.c
+++ b/src/timedated.c
@@ -50,7 +50,7 @@
" </method>\n" \
" <method name=\"SetLocalRTC\">\n" \
" <arg name=\"local_rtc\" type=\"b\" direction=\"in\"/>\n" \
- " <arg name=\"correct_system\" type=\"b\" direction=\"in\"/>\n" \
+ " <arg name=\"fix_system\" type=\"b\" direction=\"in\"/>\n" \
" <arg name=\"user_interaction\" type=\"b\" direction=\"in\"/>\n" \
" </method>\n" \
" </interface>\n" \
@@ -347,14 +347,14 @@ static DBusHandlerResult timedate_message_handler(
} else if (dbus_message_is_method_call(message, "org.freedesktop.timedate1", "SetLocalRTC")) {
dbus_bool_t lrtc;
- dbus_bool_t correct_system;
+ dbus_bool_t fix_system;
dbus_bool_t interactive;
if (!dbus_message_get_args(
message,
&error,
DBUS_TYPE_BOOLEAN, &lrtc,
- DBUS_TYPE_BOOLEAN, &correct_system,
+ DBUS_TYPE_BOOLEAN, &fix_system,
DBUS_TYPE_BOOLEAN, &interactive,
DBUS_TYPE_INVALID))
return bus_send_error_reply(connection, message, &error, -EINVAL);
@@ -384,7 +384,7 @@ static DBusHandlerResult timedate_message_handler(
/* 3. Synchronize clocks */
assert_se(clock_gettime(CLOCK_REALTIME, &ts) == 0);
- if (correct_system) {
+ if (fix_system) {
struct tm tm;
/* Sync system clock from RTC; first,
@@ -422,7 +422,7 @@ static DBusHandlerResult timedate_message_handler(
hwclock_set_time(tm);
}
- log_info("Changed local RTC setting to '%s'.", yes_no(local_rtc));
+ log_error("RTC configured to %s time.", local_rtc ? "local" : "UTC");
changed = bus_properties_changed_new(
"/org/freedesktop/timedate1",