summaryrefslogtreecommitdiff
path: root/src/pkg/http/header.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/http/header.go')
-rw-r--r--src/pkg/http/header.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/pkg/http/header.go b/src/pkg/http/header.go
index 95140b01f..95a25a814 100644
--- a/src/pkg/http/header.go
+++ b/src/pkg/http/header.go
@@ -62,9 +62,6 @@ func (h Header) WriteSubset(w io.Writer, exclude map[string]bool) os.Error {
v = strings.Replace(v, "\n", " ", -1)
v = strings.Replace(v, "\r", " ", -1)
v = strings.TrimSpace(v)
- if v == "" {
- continue
- }
if _, err := fmt.Fprintf(w, "%s: %s\r\n", k, v); err != nil {
return err
}