summaryrefslogtreecommitdiffhomepage
path: root/packet.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2016-03-15 21:41:22 +0800
committerMatt Johnston <matt@ucc.asn.au>2016-03-15 21:41:22 +0800
commit6bfbcdbfdb00f22727cfb749b1c60a80210ecfc7 (patch)
tree3e6f647d212466933d744e47dcdbcf97ff00ecfc /packet.c
parentfdc61f3ab2c07f3f8d0546ee83b1a6776cc1786e (diff)
parent645b2541732cebbccd499c4e8bf18f86d77bff0f (diff)
Merge branch 'fperrad-20151231_indent'
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet.c b/packet.c
index 19b5759..f827ab8 100644
--- a/packet.c
+++ b/packet.c
@@ -576,8 +576,8 @@ void encrypt_packet() {
}
buf_incrpos(writebuf, len);
- /* stick the MAC on it */
- buf_putbytes(writebuf, mac_bytes, mac_size);
+ /* stick the MAC on it */
+ buf_putbytes(writebuf, mac_bytes, mac_size);
/* Update counts */
ses.kexstate.datatrans += writebuf->len;
@@ -645,7 +645,7 @@ static void make_mac(unsigned int seqno, const struct key_context_directional *
dropbear_exit("HMAC error");
}
- bufsize = MAX_MAC_LEN;
+ bufsize = MAX_MAC_LEN;
if (hmac_done(&hmac, output_mac, &bufsize) != CRYPT_OK) {
dropbear_exit("HMAC error");
}