Browse code

Fix typo in cipher_kt_mode_{cbc, ofb_cfb}() doxygen.

Signed-off-by: Steffan Karger <steffan@karger.me>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <1406667866-14226-1-git-send-email-steffan@karger.me>
URL: http://article.gmane.org/gmane.network.openvpn.devel/8953
Signed-off-by: Gert Doering <gert@greenie.muc.de>

Steffan Karger authored on 2014/07/30 06:04:26
Showing 1 changed files
... ...
@@ -231,7 +231,7 @@ int cipher_kt_block_size (const cipher_kt_t *cipher_kt);
231 231
 int cipher_kt_mode (const cipher_kt_t *cipher_kt);
232 232
 
233 233
 /**
234
- * Check of the supplied cipher is a supported CBC mode cipher.
234
+ * Check if the supplied cipher is a supported CBC mode cipher.
235 235
  *
236 236
  * @param cipher	Static cipher parameters. May not be NULL.
237 237
  *
... ...
@@ -241,7 +241,7 @@ bool cipher_kt_mode_cbc(const cipher_kt_t *cipher)
241 241
   __attribute__((nonnull));
242 242
 
243 243
 /**
244
- * Check of the supplied cipher is a supported OFB or CFB mode cipher.
244
+ * Check if the supplied cipher is a supported OFB or CFB mode cipher.
245 245
  *
246 246
  * @param cipher	Static cipher parameters. May not be NULL.
247 247
  *