code cleanup

This commit is contained in:
slav123 2015-06-11 13:17:56 +10:00
parent 14b64fef43
commit 29404e34d9

View file

@ -375,20 +375,14 @@ func (c *FCGIClient) Request(p map[string]string, req io.Reader) (resp *http.Res
resp.Header = http.Header(mimeHeader)
if resp.Header.Get("Status") != "" {
// check if Status is long enought to split
if strings.Count(resp.Header.Get("Status"), " ") > 0 {
statusParts := strings.SplitN(resp.Header.Get("Status"), " ", 2)
resp.StatusCode, err = strconv.Atoi(statusParts[0])
resp.Status = statusParts[1]
resp.Status = statusParts[1]
} else {
resp.StatusCode, err = strconv.Atoi(resp.Header.Get("Status"))
}
if err != nil {
return
}
if (len(statusParts) > 0) {
resp.Status = statusParts[1]
}
} else {
resp.StatusCode = http.StatusOK