summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYonit <yhalperi@redhat.com>2009-06-22 16:33:52 +0300
committerYonit <yhalperi@redhat.com>2009-06-22 16:33:52 +0300
commitb6d2186e1ad19056513604f22c3700669734a23c (patch)
treed171c49418159c4cbd8115be7089362278bada94
parent0d39510a5f74043c9e44d4534f7064590d744339 (diff)
removed debug printing
-rw-r--r--bootp.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/bootp.c b/bootp.c
index 2619943..f8e1c27 100644
--- a/bootp.c
+++ b/bootp.c
@@ -100,7 +100,6 @@ void clear_virtual_ips()
int is_virtual_ip_allocated(struct in_addr *addr)
{
- printf("is_virtual_ip_allocated addr=%s special=%s", inet_ntoa(*addr), inet_ntoa(special_addr));
if ((addr->s_addr&htonl(0xffffff00)) == special_addr.s_addr) {
int lastbyte=(ntohl(addr->s_addr)) & 0xff;
return (((lastbyte >= START_VIRTAUL_ADDR) &&