build_csv: fix output of control characters

s3-about
Nick Craig-Wood 2019-09-23 12:52:59 +01:00
parent d122d1d191
commit 3e53376a49
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ func main() {
k := charsMap[c]
row := []string{fmt.Sprintf("%X", c), k}
for _, r := range remoteNames {
if m, ok := recordsMap[k][r]; ok {
if m, ok := recordsMap[c][r]; ok {
row = append(row, m...)
} else {
row = append(row, "", "", "", "", "", "", "", "", "")