diff options
| author | Samuel Stauffer <[email protected]> | 2014-03-19 14:05:10 -0700 |
|---|---|---|
| committer | Samuel Stauffer <[email protected]> | 2014-03-19 14:05:10 -0700 |
| commit | 4e3f3713c8f6debc9a2844af538094968142a714 (patch) | |
| tree | 0c479514925aabf0bf8776b7756d8a7204820aec /control.go | |
| parent | 222854694e922344f18910ce3704115d08ca30cb (diff) | |
Some more cleanup
Diffstat (limited to 'control.go')
| -rw-r--r-- | control.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -115,10 +115,10 @@ func DecodeControl(packet *ber.Packet) Control { value.Description += " (Paging)" c := new(ControlPaging) if value.Value != nil { - value_children := ber.DecodePacket(value.Data.Bytes()) + valueChildren := ber.DecodePacket(value.Data.Bytes()) value.Data.Truncate(0) value.Value = nil - value.AppendChild(value_children) + value.AppendChild(valueChildren) } value = value.Children[0] value.Description = "Search Control Value" |
