head 1.1; access; symbols; locks; strict; comment @ * @; 1.1 date 2026.09.06.18.44.01; author bsiegert; state Exp; branches; next ; commitid TNp9CVbeVgbBMAUG; desc @@ 1.1 log @augeas: install lenses, fix CVE-2025-2588 Make augeas install all the lenses so it is actually usable. Also fix a security issue which is not in a release yet. From Showta Ishizaki in PR pkg/60656. @ text @$NetBSD$ Print elapsed time with a format that matches time_t. See patch-src_augtool.c. --- examples/dump.c.orig +++ examples/dump.c @@@@ -119,7 +119,7 @@@@ const struct timeval *stop) { time_t elapsed = (stop->tv_sec - start->tv_sec)*1000 + (stop->tv_usec - start->tv_usec)/1000; - fprintf(stderr, "time: %ld ms\n", elapsed); + fprintf(stderr, "time: %lld ms\n", (long long) elapsed); } int main(int argc, char **argv) { @