aboutsummaryrefslogtreecommitdiff
path: root/keyctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyctl.c')
-rw-r--r--keyctl.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/keyctl.c b/keyctl.c
index b2099df88..894af62b0 100644
--- a/keyctl.c
+++ b/keyctl.c
@@ -175,8 +175,16 @@ static void
keyctl_reject_key(struct tcb *tcp, key_serial_t id1, unsigned timeout,
unsigned error, key_serial_t id2)
{
+ const char *err_str = err_name(error);
+
print_keyring_serial_number(id1);
- tprintf(", %u, %u, ", timeout, error);
+ tprintf(", %u, ", timeout);
+
+ if (err_str)
+ tprintf("%s, ", err_str);
+ else
+ tprintf("%u, ", error);
+
print_keyring_serial_number(id2);
}