summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2006-12-19 19:49:02 +0000
committerNils Larsch <nils@openssl.org>2006-12-19 19:49:02 +0000
commit34f0a1930928bba6902b8b6d5217bc6bd667f5c7 (patch)
tree103955fd3225b1f0d3e9bee1b55cb45502775fdc /crypto
parent772e3c07b4b09f2e59d35da3ce67410b625a39d4 (diff)
remove trailing '\'
PR: 1438
Diffstat (limited to 'crypto')
-rw-r--r--crypto/asn1/asn1t.h2
-rw-r--r--crypto/evp/evp_locl.h2
-rw-r--r--crypto/idea/idea_lcl.h2
-rw-r--r--crypto/pem/pem.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/crypto/asn1/asn1t.h b/crypto/asn1/asn1t.h
index 3ad3906d8e..16a1db24aa 100644
--- a/crypto/asn1/asn1t.h
+++ b/crypto/asn1/asn1t.h
@@ -99,7 +99,7 @@ extern "C" {
#define ASN1_ITEM_start(itname) \
const ASN1_ITEM * itname##_it(void) \
{ \
- static const ASN1_ITEM local_it = { \
+ static const ASN1_ITEM local_it = {
#define ASN1_ITEM_end(itname) \
}; \
diff --git a/crypto/evp/evp_locl.h b/crypto/evp/evp_locl.h
index dca3f68f34..26e11a3404 100644
--- a/crypto/evp/evp_locl.h
+++ b/crypto/evp/evp_locl.h
@@ -65,7 +65,7 @@
bl = ctx->cipher->block_size;\
if(inl < bl) return 1;\
inl -= bl; \
- for(i=0; i <= inl; i+=bl) \
+ for(i=0; i <= inl; i+=bl)
#define BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \
static int cname##_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) \
diff --git a/crypto/idea/idea_lcl.h b/crypto/idea/idea_lcl.h
index 463aa36ce9..f3dbfa67e9 100644
--- a/crypto/idea/idea_lcl.h
+++ b/crypto/idea/idea_lcl.h
@@ -67,7 +67,7 @@ if (ul != 0) \
r-=((r)>>16); \
} \
else \
- r=(-(int)a-b+1); /* assuming a or b is 0 and in range */ \
+ r=(-(int)a-b+1); /* assuming a or b is 0 and in range */
#ifdef undef
#define idea_mul(r,a,b,ul,sl) \
diff --git a/crypto/pem/pem.h b/crypto/pem/pem.h
index ddebb93f4b..51be12317d 100644
--- a/crypto/pem/pem.h
+++ b/crypto/pem/pem.h
@@ -222,7 +222,7 @@ typedef struct pem_ctx_st
type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u)\
{ \
return(((type *(*)(D2I_OF(type),char *,FILE *,type **,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_read))(d2i_##asn1, str,fp,x,cb,u)); \
-} \
+}
#define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
int PEM_write_##name(FILE *fp, type *x) \