mozilla-certdata: Fix typo: sprintf, not snprintf, in awk.

Only used during import, and only in case something is wrong anyway
requiring manual intervention, so no change to builds.
This commit is contained in:
riastradh 2024-03-03 04:35:58 +00:00
parent 9c13cd8f3b
commit 2c5ae21ccf
1 changed files with 1 additions and 1 deletions

View File

@ -427,7 +427,7 @@ $1 == "CKA_LABEL" {
NR, label
}
if (!(lolab in label_lineno)) {
err(snprintf("Missing label: %s", label))
err(sprintf("Missing label: %s", label))
skip()
next
}