diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-09-03 21:53:40 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-09-03 21:53:40 +0000 |
commit | 9e9e03e1f9e5f31aa55859631cd4683c465ee3d2 (patch) | |
tree | 261362fa24bfc7cd1ed8023033611e670f7d3686 /lib | |
parent | 390f1cfa4a3f79dd2930242030292f7a29d94bfb (diff) |
remove whitespace changes (keep diffs to 0.9.7-beta1 minimal)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/des/fcrypt.c | 2 | ||||
-rw-r--r-- | lib/libcrypto/des/read_pwd.c | 2 | ||||
-rw-r--r-- | lib/libcrypto/engine/eng_init.c | 1 | ||||
-rw-r--r-- | lib/libcrypto/engine/eng_list.c | 2 | ||||
-rw-r--r-- | lib/libcrypto/hmac/hmac.c | 2 |
5 files changed, 4 insertions, 5 deletions
diff --git a/lib/libcrypto/des/fcrypt.c b/lib/libcrypto/des/fcrypt.c index d3d27de9f7e..387d97f28d1 100644 --- a/lib/libcrypto/des/fcrypt.c +++ b/lib/libcrypto/des/fcrypt.c @@ -91,7 +91,6 @@ char *DES_crypt(const char *buf, const char *salt) } - char *DES_fcrypt(const char *buf, const char *salt, char *ret) { unsigned int i,j,x,y; @@ -163,3 +162,4 @@ r=(r+7)/8; ret[13]='\0'; return(ret); } + diff --git a/lib/libcrypto/des/read_pwd.c b/lib/libcrypto/des/read_pwd.c index ae9aef620be..54e0e2e6b6c 100644 --- a/lib/libcrypto/des/read_pwd.c +++ b/lib/libcrypto/des/read_pwd.c @@ -207,7 +207,7 @@ static int noecho_fgets(char *buf, int size, FILE *tty); #ifdef SIGACTION static struct sigaction savsig[NX509_SIG]; #else - static void (*savsig[NX509_SIG])(int ); + static void (*savsig[NX509_SIG])(int ); #endif static jmp_buf save; diff --git a/lib/libcrypto/engine/eng_init.c b/lib/libcrypto/engine/eng_init.c index cc9396e8636..170c1791b30 100644 --- a/lib/libcrypto/engine/eng_init.c +++ b/lib/libcrypto/engine/eng_init.c @@ -155,4 +155,3 @@ int ENGINE_finish(ENGINE *e) } return to_return; } - diff --git a/lib/libcrypto/engine/eng_list.c b/lib/libcrypto/engine/eng_list.c index ce48d2255a8..0c220558e78 100644 --- a/lib/libcrypto/engine/eng_list.c +++ b/lib/libcrypto/engine/eng_list.c @@ -348,7 +348,7 @@ ENGINE *ENGINE_by_id(const char *id) } CRYPTO_r_lock(CRYPTO_LOCK_ENGINE); iterator = engine_list_head; - while(iterator && (strcmp(id, iterator->id) != 0)) + while(iterator && (strcmp(id, iterator->id) != 0)) iterator = iterator->next; if(iterator) { diff --git a/lib/libcrypto/hmac/hmac.c b/lib/libcrypto/hmac/hmac.c index 026dbe8f66b..46480a4c955 100644 --- a/lib/libcrypto/hmac/hmac.c +++ b/lib/libcrypto/hmac/hmac.c @@ -72,7 +72,7 @@ void HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, ctx->md=md; EVP_MD_CTX_init(&ctx->md_ctx); } - else + else md=ctx->md; if (key != NULL) |