diff options
Diffstat (limited to 'main/openssl/ssl/ssl_ciph.c')
| -rw-r--r-- | main/openssl/ssl/ssl_ciph.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/main/openssl/ssl/ssl_ciph.c b/main/openssl/ssl/ssl_ciph.c index cd9f1082..6ea8444d 100644 --- a/main/openssl/ssl/ssl_ciph.c +++ b/main/openssl/ssl/ssl_ciph.c @@ -814,7 +814,7 @@ static void ssl_cipher_collect_ciphers(const SSL_METHOD *ssl_method,  			co_list[co_list_num].active = 0;  			co_list_num++;  #ifdef KSSL_DEBUG -			printf("\t%d: %s %lx %lx %lx\n",i,c->name,c->id,c->algorithm_mkey,c->algorithm_auth); +			fprintf(stderr,"\t%d: %s %lx %lx %lx\n",i,c->name,c->id,c->algorithm_mkey,c->algorithm_auth);  #endif	/* KSSL_DEBUG */  			/*  			if (!sk_push(ca_list,(char *)c)) goto err; @@ -931,7 +931,7 @@ static void ssl_cipher_apply_rule(unsigned long cipher_id,  	int reverse = 0;  #ifdef CIPHER_DEBUG -	printf("Applying rule %d with %08lx/%08lx/%08lx/%08lx/%08lx %08lx (%d)\n", +	fprintf(stderr, "Applying rule %d with %08lx/%08lx/%08lx/%08lx/%08lx %08lx (%d)\n",  		rule, alg_mkey, alg_auth, alg_enc, alg_mac, alg_ssl, algo_strength, strength_bits);  #endif @@ -977,7 +977,7 @@ static void ssl_cipher_apply_rule(unsigned long cipher_id,  		else  			{  #ifdef CIPHER_DEBUG -			printf("\nName: %s:\nAlgo = %08lx/%08lx/%08lx/%08lx/%08lx Algo_strength = %08lx\n", cp->name, cp->algorithm_mkey, cp->algorithm_auth, cp->algorithm_enc, cp->algorithm_mac, cp->algorithm_ssl, cp->algo_strength); +			fprintf(stderr, "\nName: %s:\nAlgo = %08lx/%08lx/%08lx/%08lx/%08lx Algo_strength = %08lx\n", cp->name, cp->algorithm_mkey, cp->algorithm_auth, cp->algorithm_enc, cp->algorithm_mac, cp->algorithm_ssl, cp->algo_strength);  #endif  			if (alg_mkey && !(alg_mkey & cp->algorithm_mkey)) @@ -997,7 +997,7 @@ static void ssl_cipher_apply_rule(unsigned long cipher_id,  			}  #ifdef CIPHER_DEBUG -		printf("Action = %d\n", rule); +		fprintf(stderr, "Action = %d\n", rule);  #endif  		/* add the cipher if it has not been added yet. */ @@ -1386,7 +1386,7 @@ STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(const SSL_METHOD *ssl_method,  	 */  	num_of_ciphers = ssl_method->num_ciphers();  #ifdef KSSL_DEBUG -	printf("ssl_create_cipher_list() for %d ciphers\n", num_of_ciphers); +	fprintf(stderr,"ssl_create_cipher_list() for %d ciphers\n", num_of_ciphers);  #endif    /* KSSL_DEBUG */  	co_list = (CIPHER_ORDER *)OPENSSL_malloc(sizeof(CIPHER_ORDER) * num_of_ciphers);  	if (co_list == NULL) @@ -1513,7 +1513,7 @@ STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(const SSL_METHOD *ssl_method,  			{  			sk_SSL_CIPHER_push(cipherstack, curr->cipher);  #ifdef CIPHER_DEBUG -			printf("<%s>\n",curr->cipher->name); +			fprintf(stderr, "<%s>\n",curr->cipher->name);  #endif  			}  		} | 
