summaryrefslogtreecommitdiff
path: root/p11-kit/rpc-message.c
diff options
context:
space:
mode:
Diffstat (limited to 'p11-kit/rpc-message.c')
-rw-r--r--p11-kit/rpc-message.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/p11-kit/rpc-message.c b/p11-kit/rpc-message.c
index bccfd2a..ff48f1d 100644
--- a/p11-kit/rpc-message.c
+++ b/p11-kit/rpc-message.c
@@ -235,7 +235,7 @@ p11_rpc_message_write_attribute_buffer (p11_rpc_message *msg,
assert (msg != NULL);
assert (msg->output != NULL);
- /* Make sure this is in the rigth order */
+ /* Make sure this is in the right order */
assert (!msg->signature || p11_rpc_message_verify_part (msg, "fA"));
/* Write the number of items */
@@ -265,7 +265,7 @@ p11_rpc_message_write_attribute_array (p11_rpc_message *msg,
assert (msg != NULL);
assert (msg->output != NULL);
- /* Make sure this is in the rigth order */
+ /* Make sure this is in the right order */
assert (!msg->signature || p11_rpc_message_verify_part (msg, "aA"));
/* Write the number of items */
@@ -328,7 +328,7 @@ p11_rpc_message_write_ulong (p11_rpc_message *msg,
assert (msg != NULL);
assert (msg->output != NULL);
- /* Make sure this is in the rigth order */
+ /* Make sure this is in the right order */
assert (!msg->signature || p11_rpc_message_verify_part (msg, "u"));
p11_rpc_buffer_add_uint64 (msg->output, val);
return !p11_buffer_failed (msg->output);