aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/network
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2005-12-04 11:46:58 +0000
committerMartin Willi <martin@strongswan.org>2005-12-04 11:46:58 +0000
commit25c41f4df7079b64ba53184e47edbc012ae96123 (patch)
tree93d1ff241cd7bf140c4780478750a20316a9c516 /Source/charon/network
parent26cfe75e4d4266c75ad6adb5244beec6731e6956 (diff)
downloadstrongswan-25c41f4df7079b64ba53184e47edbc012ae96123.tar.bz2
strongswan-25c41f4df7079b64ba53184e47edbc012ae96123.tar.xz
- logging cleanup
- pid re-replaced with thread_ids, since nptl does not distinguish pids between threads
Diffstat (limited to 'Source/charon/network')
-rw-r--r--Source/charon/network/host.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/charon/network/host.c b/Source/charon/network/host.c
index 8208586ec..7313aedce 100644
--- a/Source/charon/network/host.c
+++ b/Source/charon/network/host.c
@@ -85,7 +85,6 @@ static bool is_default_route (private_host_t *this)
{
static u_int8_t default_route[4] = {0x00,0x00,0x00,0x00};
struct sockaddr_in *sin = (struct sockaddr_in*)&(this->address);
- printf("host address: %ul\n", sin->sin_addr.s_addr);
if (memcmp(default_route,&(sin->sin_addr.s_addr),4) == 0)
{