aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSUZUKI, Shinsuke <suz@kame.net>2007-03-22 06:13:52 +0000
committerBjørn Mork <bjorn@mork.no>2010-08-06 15:37:36 +0200
commit58a239ae46041ee89b2ee78a1d9731a70389d257 (patch)
treeab7ce0b55daa11e5d676ba1d27d70c4a5c3789dc
parenta25d20838f62d3a63e87c616e19eeab5e72262d9 (diff)
fixed debug messages
-rw-r--r--dhcp6s.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/dhcp6s.c b/dhcp6s.c
index 273877f..8211f51 100644
--- a/dhcp6s.c
+++ b/dhcp6s.c
@@ -1448,7 +1448,7 @@ react_request(ifp, pi, dh6, len, optinfo, from, fromlen, relayinfohead)
}
/* the message must include a Client Identifier option */
if (optinfo->clientID.duid_len == 0) {
- dprintf(LOG_INFO, FNAME, "no server ID option");
+ dprintf(LOG_INFO, FNAME, "no client ID option");
return (-1);
}
@@ -1681,7 +1681,7 @@ react_renew(ifp, pi, dh6, len, optinfo, from, fromlen, relayinfohead)
}
/* the message must include a Client Identifier option */
if (optinfo->clientID.duid_len == 0) {
- dprintf(LOG_INFO, FNAME, "no server ID option");
+ dprintf(LOG_INFO, FNAME, "no client ID option");
return (-1);
}
@@ -1793,7 +1793,7 @@ react_rebind(ifp, dh6, len, optinfo, from, fromlen, relayinfohead)
/* the message must include a Client Identifier option */
if (optinfo->clientID.duid_len == 0) {
- dprintf(LOG_INFO, FNAME, "no server ID option");
+ dprintf(LOG_INFO, FNAME, "no client ID option");
return (-1);
}
@@ -1912,7 +1912,7 @@ react_release(ifp, pi, dh6, len, optinfo, from, fromlen, relayinfohead)
}
/* the message must include a Client Identifier option */
if (optinfo->clientID.duid_len == 0) {
- dprintf(LOG_INFO, FNAME, "no server ID option");
+ dprintf(LOG_INFO, FNAME, "no client ID option");
return (-1);
}
@@ -2041,7 +2041,7 @@ react_decline(ifp, pi, dh6, len, optinfo, from, fromlen, relayinfohead)
}
/* the message must include a Client Identifier option */
if (optinfo->clientID.duid_len == 0) {
- dprintf(LOG_INFO, FNAME, "no server ID option");
+ dprintf(LOG_INFO, FNAME, "no client ID option");
return (-1);
}