Browse Source

fix: local struct member 'poly_div' not referenced

Karel Miko 8 years ago
parent
commit
04262d3aec
1 changed files with 1 additions and 5 deletions
  1. 1 5
      src/encauth/ocb3/ocb3_init.c

+ 1 - 5
src/encauth/ocb3/ocb3_init.c

@@ -19,17 +19,13 @@
 
 static const struct {
     int           len;
-    unsigned char poly_div[MAXBLOCKSIZE],
-                  poly_mul[MAXBLOCKSIZE];
+    unsigned char poly_mul[MAXBLOCKSIZE];
 } polys[] = {
 {
     8,
-    { 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D },
     { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1B }
 }, {
     16,
-    { 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-      0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x43 },
     { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87 }
 }