Sun Mar 3 04:35:58 2024 UTC (104d)
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.


(riastradh)
diff -r1.2 -r1.3 src/external/mpl/mozilla-certdata/share/certdata.awk

cvs diff -r1.2 -r1.3 src/external/mpl/mozilla-certdata/share/certdata.awk (expand / switch to context diff)
--- src/external/mpl/mozilla-certdata/share/certdata.awk 2023/10/11 19:57:25 1.2
+++ src/external/mpl/mozilla-certdata/share/certdata.awk 2024/03/03 04:35:58 1.3
@@ -427,7 +427,7 @@
 			    NR, label
 		}
 		if (!(lolab in label_lineno)) {
-			err(snprintf("Missing label: %s", label))
+			err(sprintf("Missing label: %s", label))
 			skip()
 			next
 		}