Fix typos in include/

Reviewed-by: Ryan Moeller <ryan@ixsystems.com>
Reviewed-by: Richard Laager <rlaager@wiktel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Closes #9238
This commit is contained in:
Andrea Gelmini
2019-08-30 18:53:15 +02:00
committed by Brian Behlendorf
parent 0463c95501
commit cf7c5a030e
20 changed files with 28 additions and 28 deletions
+3 -3
View File
@@ -55,7 +55,7 @@ typedef struct zio_crypt_info {
/* length of the encryption key */
size_t ci_keylen;
/* human-readable name of the encryption alforithm */
/* human-readable name of the encryption algorithm */
char *ci_name;
} zio_crypt_info_t;
@@ -78,7 +78,7 @@ typedef struct zio_crypt_key {
/* buffer for hmac key */
uint8_t zk_hmac_keydata[SHA512_HMAC_KEYLEN];
/* buffer for currrent encryption key derived from master key */
/* buffer for current encryption key derived from master key */
uint8_t zk_current_keydata[MASTER_KEY_MAX_LEN];
/* current 64 bit salt for deriving an encryption key */
@@ -99,7 +99,7 @@ typedef struct zio_crypt_key {
/* template of hmac key for illumos crypto api */
crypto_ctx_template_t zk_hmac_tmpl;
/* lock for changing the salt and dependant values */
/* lock for changing the salt and dependent values */
krwlock_t zk_salt_lock;
} zio_crypt_key_t;