Simon Josefsson <[EMAIL PROTECTED]> writes:
> Revised patch below. Ok to install?
Yes, with one minor nit:
> + *outbuf++ = *inbuf++ ^
> + sbox[(0U + sbox[i] + sbox[j]) % ARCFOUR_SBOX_SIZE];
The usual GNU style is to parenthesize and indent right-hand-sides
that cross line boundaries, e.g.,
*outbuf++ = (*inbuf++
^ sbox[(0U + sbox[i] + sbox[j]) % ARCFOUR_SBOX_SIZE]);
Thanks.
_______________________________________________
bug-gnulib mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-gnulib