Skip to content

Commit

Permalink
flog -> dlog for received RA from ...
Browse files Browse the repository at this point in the history
  • Loading branch information
reubenhwk committed Jun 5, 2011
1 parent 15d4ccf commit 6e120ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions process.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* $Id: process.c,v 1.26 2011/04/04 14:24:58 reubenhwk Exp $
* $Id: process.c,v 1.27 2011/06/05 16:37:26 reubenhwk Exp $
*
* Authors:
* Pedro Roque <roque@di.fc.ul.pt>
Expand Down Expand Up @@ -132,12 +132,12 @@ process(struct Interface *ifacel, unsigned char *msg, int len,

if (icmph->icmp6_type == ND_ROUTER_SOLICIT)
{
flog(LOG_WARNING, "received RS from %s", addr_str);
dlog(LOG_WARNING, 3, "received RS from %s", addr_str);
process_rs(iface, msg, len, addr);
}
else if (icmph->icmp6_type == ND_ROUTER_ADVERT)
{
flog(LOG_WARNING, "received RA from %s", addr_str);
dlog(LOG_WARNING, 3, "received RA from %s", addr_str);
process_ra(iface, msg, len, addr);
}
}
Expand Down

0 comments on commit 6e120ac

Please sign in to comment.