fixup! v2 signer: correctly sort headers

Signed-off-by: Pierre-Yves Ritschard <pyr@spootnik.org>
This commit is contained in:
Pierre-Yves Ritschard 2016-11-02 17:07:02 +01:00
parent 775cc6d632
commit f1cf7de788

View file

@ -164,7 +164,7 @@ func (v2 *signer) Sign() error {
}
if len(sharray) > 0 {
sort.StringSlice(sharray).Sort()
for _, h := range(sharray) {
for _, h := range sharray {
sarray = append(sarray, smap[h])
}
xamz = strings.Join(sarray, "\n") + "\n"