forked from TrueCloudLab/certificates
Rename variable.
This commit is contained in:
parent
8252608ca2
commit
dbd1bf11f1
1 changed files with 3 additions and 3 deletions
|
@ -410,11 +410,11 @@ func (c *Client) Roots() (*api.RootsResponse, error) {
|
||||||
if resp.StatusCode >= 400 {
|
if resp.StatusCode >= 400 {
|
||||||
return nil, readError(resp.Body)
|
return nil, readError(resp.Body)
|
||||||
}
|
}
|
||||||
var federation api.RootsResponse
|
var roots api.RootsResponse
|
||||||
if err := readJSON(resp.Body, &federation); err != nil {
|
if err := readJSON(resp.Body, &roots); err != nil {
|
||||||
return nil, errors.Wrapf(err, "error reading %s", u)
|
return nil, errors.Wrapf(err, "error reading %s", u)
|
||||||
}
|
}
|
||||||
return &federation, nil
|
return &roots, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Federation performs the get federation request to the CA and returns the
|
// Federation performs the get federation request to the CA and returns the
|
||||||
|
|
Loading…
Reference in a new issue