about summary refs log tree commit diff
diff options
context:
space:
mode:
authorpelco <me@pedroo.net>2022-02-16 23:06:17 +0000
committerRich Felker <dalias@aerifal.cx>2022-02-19 19:42:21 -0500
commit5690668a1bb9f551bb78d825bc804dcebe84b7e7 (patch)
treea021b8997c45da71b10a36a028e85b818880b380
parent3b7b4155570b4b9054465785be2992c92cb7d7b1 (diff)
downloadmusl-5690668a1bb9f551bb78d825bc804dcebe84b7e7.tar.gz
musl-5690668a1bb9f551bb78d825bc804dcebe84b7e7.tar.xz
musl-5690668a1bb9f551bb78d825bc804dcebe84b7e7.zip
add missing strerror text for key management
-rw-r--r--src/errno/__strerror.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/errno/__strerror.h b/src/errno/__strerror.h
index 2d992da5..14925907 100644
--- a/src/errno/__strerror.h
+++ b/src/errno/__strerror.h
@@ -102,3 +102,7 @@ E(EDQUOT,       "Quota exceeded")
 E(ENOMEDIUM,    "No medium found")
 E(EMEDIUMTYPE,  "Wrong medium type")
 E(EMULTIHOP,    "Multihop attempted")
+E(ENOKEY,       "Required key not available")
+E(EKEYEXPIRED,  "Key has expired")
+E(EKEYREVOKED,  "Key has been revoked")
+E(EKEYREJECTED, "Key was rejected by service")