projects
/
oweals
/
odhcp6c.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f0b2d5
)
Be less verbose when sending solicits
author
Steven Barth
<steven@midlink.org>
Tue, 29 Oct 2013 14:00:08 +0000
(15:00 +0100)
committer
Steven Barth
<steven@midlink.org>
Tue, 29 Oct 2013 14:00:08 +0000
(15:00 +0100)
src/dhcpv6.c
patch
|
blob
|
history
diff --git
a/src/dhcpv6.c
b/src/dhcpv6.c
index 31a69b64228ff67883d489d2ce27144f1c2f7492..1deb10e4b1efd11f5f9e3b70c68be60fcdcfb0ce 100644
(file)
--- a/
src/dhcpv6.c
+++ b/
src/dhcpv6.c
@@
-431,8
+431,9
@@
int dhcpv6_request(enum dhcpv6_msg type)
// Built and send package
if (type != DHCPV6_MSG_UNKNOWN) {
- syslog(LOG_NOTICE, "Send %s message (elapsed %llums, rc %d)",
- retx->name, (unsigned long long)elapsed, rc);
+ if (type != DHCPV6_MSG_SOLICIT)
+ syslog(LOG_NOTICE, "Send %s message (elapsed %llums, rc %d)",
+ retx->name, (unsigned long long)elapsed, rc);
dhcpv6_send(type, trid, elapsed / 10);
rc++;
}