1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-03 05:09:14 +00:00

Fix indentation leading to gcc warnings.

This commit is contained in:
batrick
2016-06-26 21:34:58 +00:00
parent 59451640d1
commit 2cbd36443e
4 changed files with 30 additions and 30 deletions

View File

@@ -199,7 +199,7 @@ int Crypto::aes128_cbc_encrypt(u8 *inbuff, size_t inlen, u8 *dst_buff, u8 *key,
/* Do not encrypt, just set the plaintext */
for(size_t i=0; i<inlen; i++)
dst_buff[i]=inbuff[i];
return OP_SUCCESS;
return OP_SUCCESS;
} /* End of aes128_cbc_encrypt() */