Module Name:    src
Committed By:   christos
Date:           Mon Feb 12 02:15:32 UTC 2018

Modified Files:
        src/crypto/external/bsd/openssl/dist/crypto/idea: i_skey.c

Log Message:
we need variables to be signed here.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 \
    src/crypto/external/bsd/openssl/dist/crypto/idea/i_skey.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/crypto/external/bsd/openssl/dist/crypto/idea/i_skey.c
diff -u src/crypto/external/bsd/openssl/dist/crypto/idea/i_skey.c:1.5 src/crypto/external/bsd/openssl/dist/crypto/idea/i_skey.c:1.6
--- src/crypto/external/bsd/openssl/dist/crypto/idea/i_skey.c:1.5	Thu Feb  8 16:51:28 2018
+++ src/crypto/external/bsd/openssl/dist/crypto/idea/i_skey.c	Sun Feb 11 21:15:31 2018
@@ -8,6 +8,7 @@
  */
 
 #include <openssl/idea.h>
+#include <inttypes.h>
 #include "idea_lcl.h"
 
 static IDEA_INT inverse(unsigned int xin);
@@ -83,7 +84,7 @@ void IDEA_set_decrypt_key(IDEA_KEY_SCHED
 /* taken directly from the 'paper' I'll have a look at it later */
 static IDEA_INT inverse(unsigned int xin)
 {
-    IDEA_INT n1, n2, q, r, b1, b2, t;
+    int32_t n1, n2, q, r, b1, b2, t;
 
     if (xin == 0)
         b2 = 0;

Reply via email to