summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--rijndael.c8
2 files changed, 5 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index ef7c54a4..e8b64b6e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -82,6 +82,7 @@
- (djm) Don't clobber ssh_prng_cmds on install
- (stevesk) Include config.h in rijndael.c so we define intXX_t and
u_intXX_t types on all platforms.
+ - (stevesk) rijndael.c: cleanup missing declaration warnings.
20001007
- (stevesk) Print PAM return value in PAM log messages to aid
diff --git a/rijndael.c b/rijndael.c
index fd1cc99b..737007ec 100644
--- a/rijndael.c
+++ b/rijndael.c
@@ -306,7 +306,7 @@ gen_tabs(void)
}
tab_gen = 1;
-};
+}
#define star_x(x) (((x) & 0x7f7f7f7f) << 1) ^ ((((x) & 0x80808080) >> 7) * 0x1b)
@@ -399,7 +399,7 @@ rijndael_set_key(rijndael_ctx *ctx, const u4byte *in_key, const u4byte key_len,
}
return ctx;
-};
+}
/* encrypt a block of text */
@@ -444,7 +444,7 @@ rijndael_encrypt(rijndael_ctx *ctx, const u4byte *in_blk, u4byte *out_blk)
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 @@ rijndael_decrypt(rijndael_ctx *ctx, const u4byte *in_blk, u4byte *out_blk)
out_blk[0] = b0[0]; out_blk[1] = b0[1];
out_blk[2] = b0[2]; out_blk[3] = b0[3];
-};
+}