diff --git a/internal/pkg/node/methods.go b/internal/pkg/node/methods.go index 1fcbd7a7..6f49c692 100644 --- a/internal/pkg/node/methods.go +++ b/internal/pkg/node/methods.go @@ -1,9 +1,5 @@ package node -import ( - "strings" -) - /********** * * Sets @@ -15,7 +11,7 @@ func (self *Entry) Set(val string) { return } - if strings.ToUpper(val) == "DELETE" { + if val == "UNDEF" || val == "DELETE" || val == "UNSET" { self.value = "" } else { self.value = val