diff session.h @ 712:bf0ac0512ef7

Fix "-m none" case and ugly typo
author Matt Johnston <matt@ucc.asn.au>
date Wed, 20 Mar 2013 23:13:45 +0800
parents 983a817f8e41
children cd3d3c63d189
line wrap: on
line diff
--- a/session.h	Wed Mar 20 23:13:19 2013 +0800
+++ b/session.h	Wed Mar 20 23:13:45 2013 +0800
@@ -63,9 +63,9 @@
 
 /* crypto parameters that are stored individually for transmit and receive */
 struct key_context_directional {
-	const struct dropbear_cipher *algo_crypt; /* NULL for none */
+	const struct dropbear_cipher *algo_crypt;
 	const struct dropbear_cipher_mode *crypt_mode;
-	const struct dropbear_hash *algo_mac; /* NULL for none */
+	const struct dropbear_hash *algo_mac;
 	int hash_index; /* lookup for libtomcrypt */
 	char algo_comp; /* compression */
 #ifndef DISABLE_ZLIB