0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00

Removed parentheses #127

This commit is contained in:
Slawomir Jasinski 2015-06-12 11:33:55 +10:00
parent 29404e34d9
commit db2368cd0b

View file

@ -380,7 +380,7 @@ func (c *FCGIClient) Request(p map[string]string, req io.Reader) (resp *http.Res
if err != nil {
return
}
if (len(statusParts) > 0) {
if len(statusParts) > 0 {
resp.Status = statusParts[1]
}