=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/rijndael.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- src/usr.bin/ssh/rijndael.c 2000/10/13 18:59:14 1.1 +++ src/usr.bin/ssh/rijndael.c 2000/10/15 14:14:01 1.2 @@ -1,4 +1,4 @@ -/* $OpenBSD: rijndael.c,v 1.1 2000/10/13 18:59:14 markus Exp $ */ +/* $OpenBSD: rijndael.c,v 1.2 2000/10/15 14:14:01 markus Exp $ */ /* This is an independent implementation of the encryption algorithm: */ /* */ @@ -306,7 +306,7 @@ } tab_gen = 1; -}; +} #define star_x(x) (((x) & 0x7f7f7f7f) << 1) ^ ((((x) & 0x80808080) >> 7) * 0x1b) @@ -399,7 +399,7 @@ } return ctx; -}; +} /* encrypt a block of text */ @@ -444,7 +444,7 @@ out_blk[0] = b0[0]; out_blk[1] = b0[1]; out_blk[2] = b0[2]; out_blk[3] = b0[3]; -}; +} /* decrypt a block of text */ @@ -490,4 +490,4 @@ out_blk[0] = b0[0]; out_blk[1] = b0[1]; out_blk[2] = b0[2]; out_blk[3] = b0[3]; -}; +}