From b5cb0210f7b4672cd1c9e51a5ae6943fcc25331f Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Mon, 10 Apr 2006 14:19:10 +0000 Subject: - startet importing pluto ASN1 stuff - der PKCS#1 key loading works (as it did with der_decoder) --- Source/lib/utils/logger.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Source/lib/utils/logger.c') diff --git a/Source/lib/utils/logger.c b/Source/lib/utils/logger.c index 1ae6bd6f0..c3888f80f 100644 --- a/Source/lib/utils/logger.c +++ b/Source/lib/utils/logger.c @@ -220,11 +220,11 @@ static void log_bytes(private_logger_t *this, log_level_t loglevel, char *label, buffer_pos = buffer; if (this->output == NULL) { - syslog(LOG_INFO, "[=>] [%5d ] %s %s", line_start, buffer, ascii_buffer); + syslog(LOG_INFO, "[=>] [%5d] %s %s", line_start, buffer, ascii_buffer); } else { - fprintf(this->output, "[=>] [%5d ] %s %s\n", line_start, buffer, ascii_buffer); + fprintf(this->output, "[=>] [%5d] %s %s\n", line_start, buffer, ascii_buffer); } memset(ascii_buffer, 0, 16); line_start += 16; @@ -257,11 +257,11 @@ static void log_bytes(private_logger_t *this, log_level_t loglevel, char *label, buffer_pos = buffer; if (this->output == NULL) { - syslog(LOG_INFO, "[=>] [%5d ] %s %16s", line_start, buffer, ascii_buffer); + syslog(LOG_INFO, "[=>] [%5d] %s %16s", line_start, buffer, ascii_buffer); } else { - fprintf(this->output, "[=>] [%5d ] %s %16s\n", line_start, buffer, ascii_buffer); + fprintf(this->output, "[=>] [%5d] %s %16s\n", line_start, buffer, ascii_buffer); } } pthread_mutex_unlock(&mutex); -- cgit v1.2.3