mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 16:59:03 +03:00
general: unify error code we generate on timeout
This commit is contained in:
parent
aa2e211587
commit
ccc80078fe
@ -132,7 +132,7 @@ int ask_password_tty(
|
||||
r = -errno;
|
||||
goto finish;
|
||||
} else if (k == 0) {
|
||||
r = -ETIMEDOUT;
|
||||
r = -ETIME;
|
||||
goto finish;
|
||||
}
|
||||
|
||||
|
@ -1361,6 +1361,7 @@ static const char *error_to_dbus(int error) {
|
||||
return DBUS_ERROR_FILE_EXISTS;
|
||||
|
||||
case -ETIMEDOUT:
|
||||
case -ETIME:
|
||||
return DBUS_ERROR_TIMEOUT;
|
||||
|
||||
case -EIO:
|
||||
|
@ -128,7 +128,7 @@ static int ask_password_plymouth(
|
||||
y = now(CLOCK_MONOTONIC);
|
||||
|
||||
if (y > until) {
|
||||
r = -ETIMEDOUT;
|
||||
r = -ETIME;
|
||||
goto finish;
|
||||
}
|
||||
|
||||
@ -149,7 +149,7 @@ static int ask_password_plymouth(
|
||||
r = -errno;
|
||||
goto finish;
|
||||
} else if (j == 0) {
|
||||
r = -ETIMEDOUT;
|
||||
r = -ETIME;
|
||||
goto finish;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user