diff options
author | Matt Johnston <matt@ucc.asn.au> | 2016-03-15 21:41:22 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2016-03-15 21:41:22 +0800 |
commit | 6bfbcdbfdb00f22727cfb749b1c60a80210ecfc7 (patch) | |
tree | 3e6f647d212466933d744e47dcdbcf97ff00ecfc /packet.c | |
parent | fdc61f3ab2c07f3f8d0546ee83b1a6776cc1786e (diff) | |
parent | 645b2541732cebbccd499c4e8bf18f86d77bff0f (diff) |
Merge branch 'fperrad-20151231_indent'
Diffstat (limited to 'packet.c')
-rw-r--r-- | packet.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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"); } |