X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fmachine%2Fmachinectl.c;h=f604263d8f2cfd8c7a991144776924c84e4e139c;hp=6db9e5c91bfab956beee7f3e9645e443ecdc9436;hb=1d050e1e0a7082e23ee9b31fa0b819cb332b3444;hpb=f647962d64e844689f3e2acfce6102fc47e76df2 diff --git a/src/machine/machinectl.c b/src/machine/machinectl.c index 6db9e5c91..f604263d8 100644 --- a/src/machine/machinectl.c +++ b/src/machine/machinectl.c @@ -725,10 +725,8 @@ static int login_machine(sd_bus *bus, char **args, unsigned n) { return log_error_errno(master, "Failed to acquire pseudo tty: %m"); pty = ptsname(master); - if (!pty) { - log_error("Failed to get pty name: %m"); - return -errno; - } + if (!pty) + return log_error_errno(errno, "Failed to get pty name: %m"); p = startswith(pty, "/dev/pts/"); if (!p) { @@ -744,10 +742,8 @@ static int login_machine(sd_bus *bus, char **args, unsigned n) { if (!getty) return log_oom(); - if (unlockpt(master) < 0) { - log_error("Failed to unlock tty: %m"); - return -errno; - } + if (unlockpt(master) < 0) + return log_error_errno(errno, "Failed to unlock tty: %m"); r = sd_bus_call_method(container_bus, "org.freedesktop.systemd1",