Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pixiecore/dhcpv6.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ func (s *ServerV6) serveDHCP(conn *dhcp6.Conn) error {
if err != nil {
s.log("dhcpv6", fmt.Sprintf("Error creating response for transaction: %d: %s", pkt.TransactionID, err))
if response == nil {
s.log("dhcpv6", fmt.Sprintf("Dropping the packet"))
s.log("dhcpv6", "Dropping the packet")
continue
} else {
s.log("dhcpv6", fmt.Sprintf("Will notify the client"))
s.log("dhcpv6", "Will notify the client")
}
}
if response == nil {
Expand Down