aboutsummaryrefslogtreecommitdiffstats
path: root/Source/lib/utils/logger.c
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2006-04-10 14:19:10 +0000
committerMartin Willi <martin@strongswan.org>2006-04-10 14:19:10 +0000
commitb5cb0210f7b4672cd1c9e51a5ae6943fcc25331f (patch)
tree8a18498b075917f81127416cd57659444d440476 /Source/lib/utils/logger.c
parent5113680f95e522c677cdd37072cfffbdca06831e (diff)
downloadstrongswan-b5cb0210f7b4672cd1c9e51a5ae6943fcc25331f.tar.bz2
strongswan-b5cb0210f7b4672cd1c9e51a5ae6943fcc25331f.tar.xz
- startet importing pluto ASN1 stuff
- der PKCS#1 key loading works (as it did with der_decoder)
Diffstat (limited to 'Source/lib/utils/logger.c')
-rw-r--r--Source/lib/utils/logger.c8
1 files changed, 4 insertions, 4 deletions
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);