diff options
author | insomniac <insomniacslk@users.noreply.github.com> | 2018-08-10 05:49:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-10 05:49:53 -0700 |
commit | a6212f1f72e94821a29894fb66656a981bd035d0 (patch) | |
tree | a816ff9e8821b773486fabfb0e41fd0414d730b6 /dhcpv4/option_tftp_server_name.go | |
parent | 5207d76712250f33111c546d9ace98336d616bfc (diff) | |
parent | 0edcc4a6721ffa792bbdc095134ac77e473510ee (diff) |
rename RequestFromOffer to NewRequestFromOffer (#121)
Diffstat (limited to 'dhcpv4/option_tftp_server_name.go')
-rw-r--r-- | dhcpv4/option_tftp_server_name.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcpv4/option_tftp_server_name.go b/dhcpv4/option_tftp_server_name.go index b4029e1..19dde21 100644 --- a/dhcpv4/option_tftp_server_name.go +++ b/dhcpv4/option_tftp_server_name.go @@ -28,7 +28,7 @@ func (op *OptTFTPServerName) Length() int { } func (op *OptTFTPServerName) String() string { - return fmt.Sprintf("OptTFTPServerName{TFTPServerName=%s}", op.TFTPServerName) + return fmt.Sprintf("TFTP Server Name -> %s", op.TFTPServerName) } // ParseOptTFTPServerName returns a new OptTFTPServerName fomr a byte stream or error if any |