summaryrefslogtreecommitdiff
path: root/src/auto-serial-getty.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/auto-serial-getty.c')
-rw-r--r--src/auto-serial-getty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auto-serial-getty.c b/src/auto-serial-getty.c
index 7bc2fba8da..355cdfd6a6 100644
--- a/src/auto-serial-getty.c
+++ b/src/auto-serial-getty.c
@@ -59,7 +59,7 @@ static int spawn_getty(DBusConnection *bus, const char *console) {
}
if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
- log_error("Failed to start unit: %s", error.message);
+ log_error("Failed to start unit: %s", bus_error_message(&error));
goto finish;
}
@@ -160,7 +160,7 @@ int main(int argc, char *argv[]) {
log_open();
if (bus_connect(DBUS_BUS_SYSTEM, &bus, NULL, &error) < 0) {
- log_error("Failed to get D-Bus connection: %s", error.message);
+ log_error("Failed to get D-Bus connection: %s", bus_error_message(&error));
goto finish;
}