diff options
Diffstat (limited to 'dhcpv6')
-rw-r--r-- | dhcpv6/option_bootfileurl.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcpv6/option_bootfileurl.go b/dhcpv6/option_bootfileurl.go index 581ddd8..5857af1 100644 --- a/dhcpv6/option_bootfileurl.go +++ b/dhcpv6/option_bootfileurl.go @@ -37,7 +37,7 @@ func (op *OptBootFileURL) Length() int { } func (op *OptBootFileURL) String() string { - return fmt.Sprintf("OptBootFileURL{BootFileUrl=%v}", op.bootFileUrl) + return fmt.Sprintf("OptBootFileURL{BootFileUrl=%s}", op.bootFileUrl) } // build an OptBootFileURL structure from a sequence of bytes. |