summaryrefslogtreecommitdiffstats
path: root/src/hostname/hostnamectl.c
diff options
context:
space:
mode:
authorfangxiuning <fangxiuning123@126.com>2020-07-20 13:20:52 +0200
committerYu Watanabe <watanabe.yu+github@gmail.com>2020-07-21 03:02:01 +0200
commitddbab78f9af92e63ce12afddc2dba0e5f59b9f9d (patch)
tree3fef6cfa327b8d2eb5624cf60df481e58ee721ba /src/hostname/hostnamectl.c
parentMerge pull request #16518 from yuwata/network-fix-failure-in-updating-mac-add... (diff)
downloadsystemd-ddbab78f9af92e63ce12afddc2dba0e5f59b9f9d.tar.xz
systemd-ddbab78f9af92e63ce12afddc2dba0e5f59b9f9d.zip
bus: use bus_log_connect_error to print error message
Diffstat (limited to 'src/hostname/hostnamectl.c')
-rw-r--r--src/hostname/hostnamectl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hostname/hostnamectl.c b/src/hostname/hostnamectl.c
index 348d2b0429..2d6b2da125 100644
--- a/src/hostname/hostnamectl.c
+++ b/src/hostname/hostnamectl.c
@@ -444,7 +444,7 @@ static int run(int argc, char *argv[]) {
r = bus_connect_transport(arg_transport, arg_host, false, &bus);
if (r < 0)
- return log_error_errno(r, "Failed to create bus connection: %m");
+ return bus_log_connect_error(r);
return hostnamectl_main(bus, argc, argv);
}