Mercurial > pidgin
changeset 31220:554ac1421c9c
fixed some indentation issues that were missed earlier in rc4.c
author | Gary Kramlich <grim@reaperworld.com> |
---|---|
date | Mon, 14 Feb 2011 07:38:41 +0000 |
parents | 2d3c1197f930 |
children | 2b041e31b825 |
files | libpurple/ciphers/rc4.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/ciphers/rc4.c Mon Feb 14 06:54:12 2011 +0000 +++ b/libpurple/ciphers/rc4.c Mon Feb 14 07:38:41 2011 +0000 @@ -103,7 +103,7 @@ } } - static size_t +static size_t rc4_get_key_size (PurpleCipherContext *context) { struct RC4Context *ctx; @@ -132,7 +132,7 @@ static gint rc4_encrypt(PurpleCipherContext *context, const guchar data[], - size_t len, guchar output[], size_t *outlen) { + size_t len, guchar output[], size_t *outlen) { struct RC4Context *ctx; guchar temp_swap; guchar x, y, z;