diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-02-24 02:33:57 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-02-24 02:33:57 +0100 |
commit | ccc80078fe47395ffe0dd48cb6c81551d991ef4b (patch) | |
tree | bbb42e44b4ed74b39f7be2e12053bea81cc0505e /src/tty-ask-password-agent.c | |
parent | aa2e2115873e102b8f6701f4211ddf7bec4c5e10 (diff) |
general: unify error code we generate on timeout
Diffstat (limited to 'src/tty-ask-password-agent.c')
-rw-r--r-- | src/tty-ask-password-agent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tty-ask-password-agent.c b/src/tty-ask-password-agent.c index 14b01486bd..5e745247e5 100644 --- a/src/tty-ask-password-agent.c +++ b/src/tty-ask-password-agent.c @@ -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; } |