Module Name: src
Committed By: riastradh
Date: Sun Mar 3 04:35:58 UTC 2024
Modified Files:
src/external/mpl/mozilla-certdata/share: certdata.awk
Log Message:
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.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/mpl/mozilla-certdata/share/certdata.awk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/mpl/mozilla-certdata/share/certdata.awk
diff -u src/external/mpl/mozilla-certdata/share/certdata.awk:1.2 src/external/mpl/mozilla-certdata/share/certdata.awk:1.3
--- src/external/mpl/mozilla-certdata/share/certdata.awk:1.2 Wed Oct 11 19:57:25 2023
+++ src/external/mpl/mozilla-certdata/share/certdata.awk Sun Mar 3 04:35:58 2024
@@ -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
}