chiark / gitweb /
fix c violations detected by newer gcc - urgh
authorian <ian>
Thu, 16 Dec 2004 00:17:32 +0000 (00:17 +0000)
committerian <ian>
Thu, 16 Dec 2004 00:17:32 +0000 (00:17 +0000)
crypto/algtables.c
crypto/crypto.c

index 24ebba7c5e1cd249740f294973a6627cbb14fcb9..bb111dea4e2cc958e778fba123b952d886c8b61d 100644 (file)
     name##_set_key(sch, keylen, key);                                        \
   }                                                                          \
   static void alg_##name##_encr(const void *sch, const void *in, void *out) { \
-    ##name##_encrypt((void*)sch, NAME##_BLOCK_SIZE, out, in);                \
+    name##_encrypt((void*)sch, NAME##_BLOCK_SIZE, out, in);                  \
   }                                                                          \
   static void alg_##name##_decr(const void *sch, const void *in, void *out) { \
-    ##name##_decrypt((void*)sch, NAME##_BLOCK_SIZE, out, in);                \
+    name##_decrypt((void*)sch, NAME##_BLOCK_SIZE, out, in);                  \
   }
   NETTLE_BLOCKCIPHERS
 #undef DO
index 49a409f0c01230e7e3bd9f03fff62c6c4a544587..97f4d1db06c16e79d8804d2392859f8bc85fdae0 100644 (file)
@@ -92,7 +92,7 @@ int do_padmethodinfo_rfc2406(ClientData cd, Tcl_Interp *ip,
 
     *ok= 1;
 
-  quit:
+  quit:;
 
   }