Fix a file descriptor leak: https://github.com/xinetd-org/xinetd/issues/23 Patch copied from Debian: https://anonscm.debian.org/cgit/collab-maint/xinetd.git/tree/debian/patches/000012-fix_fd_leak Patch sent upstream at https://github.com/xinetd-org/xinetd/pull/26. diff --git a/xinetd/xgetloadavg.c b/xinetd/xgetloadavg.c index 5a26214..fe0f872 100644 --- a/xinetd/xgetloadavg.c +++ b/xinetd/xgetloadavg.c @@ -34,7 +34,7 @@ double xgetloadavg(void) if( fscanf(fd, "%lf", &ret) != 1 ) { perror("fscanf"); - return -1; + ret = -1; } fclose(fd); -- 2.7.4 ut type='hidden' name='id' value='03de08d3b6efbb1a1ac1ffa3027c32b720076a07'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/doc/build.scm
AgeCommit message (Expand)Author
2024-04-01nls: Update translations....* po/guix/ar.po: New file. * po/guix/LINGUAS: Add 'ar'. * po/doc/guix-cookbook.pt_BR.po: New file. * po/doc/local.mk: Add 'pt_BR' cookbook. * doc/local.mk: Add 'pt_BR' cookbook. * doc/htmlxref.cnf: Update URLs for cookbook. * doc/build.scm (%cookbook-languages): Add 'ko', 'pt_BR'. * doc/guix-cookbook.texi (Top): Mention 'ko', 'pt_BR' cookbook. Change-Id: Id1846ca100263b3fc1fa2ed52654c670270ee809 Florian Pelz
2024-03-15doc: build: Update paths to style sheets....The Guix website style sheets are now organized in themes. This change makes the documentation builder use the resources provided by a theme called "initial" (See https://issues.guix.gnu.org/69783). * doc/build.scm (syntax-highlighted-html): Update path to CSS. (html-manual-indexes): Likewise. (stylized-html): Likewise, and update path to language picker image. Change-Id: Ib2d51fcfdec42ad827add1ead1cfee4c9c4e65b7 Signed-off-by: Florian Pelz <pelzflorian@pelzflorian.de> Luis Felipe