summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Boeckel <mathstuf@gmail.com>2019-08-29 16:43:12 -0400
committerDavid Howells <dhowells@redhat.com>2019-09-04 10:47:32 +0100
commit7a2e2679f284b226987daebc4f6f078b19e1066b (patch)
tree601f76ad8aca85c368f7c35b2cc10f71c1d37da9
parent27bdc9ec1baf6681f666056412afe0cc94105435 (diff)
downloadkeyutils-7a2e2679f284b226987daebc4f6f078b19e1066b.tar.gz
keyctl: unify spelling of "unparsable"
Both spelling seems to be accepted, but the majority of uses agreed on the "unparsable" variant. Signed-off-by: Ben Boeckel <mathstuf@gmail.com> Signed-off-by: David Howells <dhowells@redhat.com>
-rw-r--r--keyctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/keyctl.c b/keyctl.c
index 988994b..769e5ee 100644
--- a/keyctl.c
+++ b/keyctl.c
@@ -999,7 +999,7 @@ static void act_keyctl_list(int argc, char *argv[])
n = sscanf((char *) buffer, "%*[^;]%n;%d;%d;%x;%n",
&tlen, &uid, &gid, &perm, &dpos);
if (n != 3) {
- fprintf(stderr, "Unparseable description obtained for key %d\n", key);
+ fprintf(stderr, "Unparsable description obtained for key %d\n", key);
exit(3);
}
@@ -1092,7 +1092,7 @@ static void act_keyctl_describe(int argc, char *argv[])
n = sscanf(buffer, "%*[^;]%n;%d;%d;%x;%n",
&tlen, &uid, &gid, &perm, &dpos);
if (n != 3) {
- fprintf(stderr, "Unparseable description obtained for key %d\n", key);
+ fprintf(stderr, "Unparsable description obtained for key %d\n", key);
exit(3);
}
@@ -2429,7 +2429,7 @@ static int dump_key_tree_aux(key_serial_t key, int depth, int more, int hex_key_
type, &uid, &gid, &perm, &dpos);
if (n != 4) {
- fprintf(stderr, "Unparseable description obtained for key %d\n", key);
+ fprintf(stderr, "Unparsable description obtained for key %d\n", key);
exit(3);
}