chiark / gitweb /
treewide: auto-convert the simple cases to log_*_errno()
[elogind.git] / src / timedate / timedatectl.c
index 0ba32d31c4015e186598d6e3a518f2b5291a0c5f..f8d2af97d4b3b7e7202ec660561571414da52b79 100644 (file)
@@ -232,7 +232,7 @@ static int show_status(sd_bus *bus, char **args, unsigned n) {
                                    map,
                                    &info);
         if (r < 0) {
-                log_error("Failed to query server: %s", strerror(-r));
+                log_error_errno(-r, "Failed to query server: %m");
                 goto fail;
         }
 
@@ -364,7 +364,7 @@ static int list_timezones(sd_bus *bus, char **args, unsigned n) {
 
         r = get_timezones(&zones);
         if (r < 0) {
-                log_error("Failed to read list of time zones: %s", strerror(-r));
+                log_error_errno(-r, "Failed to read list of time zones: %m");
                 return r;
         }
 
@@ -558,7 +558,7 @@ int main(int argc, char *argv[]) {
 
         r = bus_open_transport(arg_transport, arg_host, false, &bus);
         if (r < 0) {
-                log_error("Failed to create bus connection: %s", strerror(-r));
+                log_error_errno(-r, "Failed to create bus connection: %m");
                 goto finish;
         }