summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-06-07 20:26:51 +0000
committerBodo Möller <bodo@openssl.org>1999-06-07 20:26:51 +0000
commitb1c4fe36258dde2950f59fec5d5f86743e495d9d (patch)
treefbb2d22a4ba3bf5b591fbe3fdba22074ca793300 /crypto
parent9e06f6f6019198e3f84cbfc9ff5d561400db4d7e (diff)
Don't mix real tabs with tabs expanded as 8 spaces -- that's
a pain to read when using 4-space tabs.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bio/bio_lib.c18
-rw-r--r--crypto/bio/bss_acpt.c2
-rw-r--r--crypto/cversion.c2
-rw-r--r--crypto/des/read_pwd.c10
-rw-r--r--crypto/dsa/dsa_gen.c4
-rw-r--r--crypto/err/err.c2
-rw-r--r--crypto/evp/bio_ok.c2
-rw-r--r--crypto/mem.c4
8 files changed, 22 insertions, 22 deletions
diff --git a/crypto/bio/bio_lib.c b/crypto/bio/bio_lib.c
index c0bda7a950..62d26992af 100644
--- a/crypto/bio/bio_lib.c
+++ b/crypto/bio/bio_lib.c
@@ -117,7 +117,7 @@ int BIO_free(BIO *a)
#ifdef REF_PRINT
REF_PRINT("BIO",a);
#endif
- if (i > 0) return(1);
+ if (i > 0) return(1);
#ifdef REF_CHECK
if (i < 0)
{
@@ -434,9 +434,9 @@ BIO *BIO_dup_chain(BIO *in)
goto err;
}
- /* copy app data */
- if (!CRYPTO_dup_ex_data(bio_meth,&new->ex_data,&bio->ex_data))
- goto err;
+ /* copy app data */
+ if (!CRYPTO_dup_ex_data(bio_meth,&new->ex_data,&bio->ex_data))
+ goto err;
if (ret == NULL)
{
@@ -464,11 +464,11 @@ void BIO_copy_next_retry(BIO *b)
int BIO_get_ex_new_index(long argl, char *argp, int (*new_func)(),
int (*dup_func)(), void (*free_func)())
- {
- bio_meth_num++;
- return(CRYPTO_get_ex_new_index(bio_meth_num-1,&bio_meth,
- argl,argp,new_func,dup_func,free_func));
- }
+ {
+ bio_meth_num++;
+ return(CRYPTO_get_ex_new_index(bio_meth_num-1,&bio_meth,
+ argl,argp,new_func,dup_func,free_func));
+ }
int BIO_set_ex_data(BIO *bio, int idx, char *data)
{
diff --git a/crypto/bio/bss_acpt.c b/crypto/bio/bss_acpt.c
index 50a4eb41f2..47af80f76d 100644
--- a/crypto/bio/bss_acpt.c
+++ b/crypto/bio/bss_acpt.c
@@ -292,7 +292,7 @@ static int acpt_read(BIO *b, char *out, int outl)
int ret=0;
BIO_ACCEPT *data;
- BIO_clear_retry_flags(b);
+ BIO_clear_retry_flags(b);
data=(BIO_ACCEPT *)b->ptr;
while (b->next_bio == NULL)
diff --git a/crypto/cversion.c b/crypto/cversion.c
index e4e6afa69a..959b2611b7 100644
--- a/crypto/cversion.c
+++ b/crypto/cversion.c
@@ -72,7 +72,7 @@ const char *SSLeay_version(int t)
static char buf[sizeof(DATE)+11];
sprintf(buf,"built on: %s",DATE);
- return(buf);
+ return(buf);
#else
return("built on: date not available");
#endif
diff --git a/crypto/des/read_pwd.c b/crypto/des/read_pwd.c
index 8ac1f1e36e..d280aa14a5 100644
--- a/crypto/des/read_pwd.c
+++ b/crypto/des/read_pwd.c
@@ -476,11 +476,11 @@ static int noecho_fgets(char *buf, int size, FILE *tty)
* usually a CR so this can be trouble. No STDIO fix seems to work but
* flushing the console appears to do the trick.
*/
- {
- HANDLE inh;
- inh = GetStdHandle(STD_INPUT_HANDLE);
- FlushConsoleInputBuffer(inh);
- }
+ {
+ HANDLE inh;
+ inh = GetStdHandle(STD_INPUT_HANDLE);
+ FlushConsoleInputBuffer(inh);
+ }
#endif
return(strlen(buf));
}
diff --git a/crypto/dsa/dsa_gen.c b/crypto/dsa/dsa_gen.c
index c2661c1d0c..2b762d66f5 100644
--- a/crypto/dsa/dsa_gen.c
+++ b/crypto/dsa/dsa_gen.c
@@ -212,8 +212,8 @@ end:
/* We now need to gernerate g */
/* Set r0=(p-1)/q */
- BN_sub(test,p,BN_value_one());
- BN_div(r0,NULL,test,q,ctx);
+ BN_sub(test,p,BN_value_one());
+ BN_div(r0,NULL,test,q,ctx);
BN_set_word(test,h);
BN_MONT_CTX_set(mont,p,ctx);
diff --git a/crypto/err/err.c b/crypto/err/err.c
index e028e4c3ba..d62680daf4 100644
--- a/crypto/err/err.c
+++ b/crypto/err/err.c
@@ -601,7 +601,7 @@ void ERR_set_error_data(char *data, int flags)
}
void ERR_add_error_data(int num, ...)
- {
+ {
va_list args;
int i,n,s;
char *str,*p,*a;
diff --git a/crypto/evp/bio_ok.c b/crypto/evp/bio_ok.c
index fbc33bfcb0..101275d648 100644
--- a/crypto/evp/bio_ok.c
+++ b/crypto/evp/bio_ok.c
@@ -523,7 +523,7 @@ static void block_in(BIO* b)
{
BIO_OK_CTX *ctx;
EVP_MD_CTX *md;
- long tl= 0;
+ long tl= 0;
unsigned char tmp[EVP_MAX_MD_SIZE];
ctx=(BIO_OK_CTX *)b->ptr;
diff --git a/crypto/mem.c b/crypto/mem.c
index d9d1c7a252..75ab2a1b36 100644
--- a/crypto/mem.c
+++ b/crypto/mem.c
@@ -336,8 +336,8 @@ void CRYPTO_mem_leaks(BIO *b)
#if 0
lh_stats_bio(mh,b);
- lh_node_stats_bio(mh,b);
- lh_node_usage_stats_bio(mh,b);
+ lh_node_stats_bio(mh,b);
+ lh_node_usage_stats_bio(mh,b);
#endif
}