tls: set TLS_DEBUG to 0; placate a gcc indentation warning
authorDenys Vlasenko <vda.linux@googlemail.com>
Mon, 23 Jan 2017 00:15:13 +0000 (01:15 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Mon, 23 Jan 2017 00:15:13 +0000 (01:15 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
networking/tls.c
networking/tls_symmetric.h

index 29cc5b9f35dc0a667ff46368b8554b5eec58a45a..89f2ec6032d213dda202a54eb1546c713a45c1b4 100644 (file)
@@ -18,7 +18,7 @@
 
 #include "tls.h"
 
-#define TLS_DEBUG      1
+#define TLS_DEBUG      0
 #define TLS_DEBUG_HASH 0
 #define TLS_DEBUG_DER  0
 #define TLS_DEBUG_FIXED_SECRETS 0
index 8488b437e69b9aff09378383bf002aafd71fecb8..5e0e4b6d86198713a931d083d73dc2bae48dd574 100644 (file)
 
 static ALWAYS_INLINE unsigned ROL(unsigned word, int i)
 {
- if (__builtin_constant_p(i)) //box
+ if (__builtin_constant_p(i)) //box
    // Rotates by constant use fewer registers,
    // and on many Intel CPUs rotates by %cl take 2 cycles, not 1.
-   asm ("roll %2,%0" //box
+   asm ("roll %2,%0"
          :"=r" (word)
          :"0" (word),"i" (i));
- else  //box
-   asm ("roll %%cl,%0"
+   return word;
+ } //box
+ asm ("roll %%cl,%0"
          :"=r" (word)
          :"0" (word),"c" (i));
  return word;
+ return word;
 }
 
 static ALWAYS_INLINE unsigned ROR(unsigned word, int i)
 {
- if (__builtin_constant_p(i)) //box
-   asm ("rorl %2,%0" //box
+ if (__builtin_constant_p(i)) //box
+   asm ("rorl %2,%0"
          :"=r" (word)
          :"0" (word),"i" (i));
- else //box
-   asm ("rorl %%cl,%0"
+   return word;
+ } //box
+ asm ("rorl %%cl,%0"
          :"=r" (word)
          :"0" (word),"c" (i));
  return word;
+ return word;
 }
 
 /******************************************************************************/