From 3febcf15f0cba8b17ab3bdb67c3d0864ef61080c Mon Sep 17 00:00:00 2001 From: Jan Hutter Date: Tue, 6 Dec 2005 16:36:42 +0000 Subject: - code cleaned up --- Source/charon/threads/sender.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/charon/threads/sender.c') diff --git a/Source/charon/threads/sender.c b/Source/charon/threads/sender.c index 3719c6b6c..2ba0de781 100644 --- a/Source/charon/threads/sender.c +++ b/Source/charon/threads/sender.c @@ -74,16 +74,16 @@ static void send_packets(private_sender_t * this) /* cancellation disabled by default */ pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL); - this->logger->log(this->logger, CONTROL, "sender thread running, thread_id %u", (int)pthread_self()); + this->logger->log(this->logger, CONTROL, "Sender thread running, thread_id %u", (int)pthread_self()); while (1) { current_packet = charon->send_queue->get(charon->send_queue); - this->logger->log(this->logger, CONTROL|MORE, "got a packet, sending it"); + this->logger->log(this->logger, CONTROL|MORE, "Got a packet, sending it"); status = charon->socket->send(charon->socket,current_packet); if (status != SUCCESS) { - this->logger->log(this->logger, ERROR, "sending failed, socket returned %s", + this->logger->log(this->logger, ERROR, "Sending failed, socket returned %s", mapping_find(status_m, status)); } current_packet->destroy(current_packet); -- cgit v1.2.3