From d6d2caef3e44d0713bb6625f697a1ec615abae70 Mon Sep 17 00:00:00 2001 From: "Jan (janneke) Nieuwenhuizen" Date: Sun, 5 Apr 2020 16:29:54 +0200 Subject: [PATCH 4/4] misc: Choose a longer arbitrary line length. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This allows running specifying a `getty' in the GNU Guix store. * misc/getttyent.c (MAXLINELENGTH): Use 512 (instead of 100) as another "great" arbitrary limit. Co-Authored-By: Ludovic Courtès --- misc/getttyent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/getttyent.c b/misc/getttyent.c index 92d92b026f..508d296291 100644 --- a/misc/getttyent.c +++ b/misc/getttyent.c @@ -66,7 +66,7 @@ __getttyent (void) static struct ttyent tty; int c; char *p; -#define MAXLINELENGTH 100 +#define MAXLINELENGTH 512 static char line[MAXLINELENGTH]; if (!tf && !__setttyent()) -- 2.26.0 lass='sub right'>
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2022-12-18doc: Update URLs for the manual and cookbook translations....* doc/htmlxref.cnf: Update URLs for "guix" and "guix-cookbook". Ludovic Courtès
2022-12-18doc: Add guile-netlink to 'htmlxref.cnf'....* doc/htmlxref.cnf: Add guile-netlink. Ludovic Courtès
2022-08-05doc: Fix Guix manual URLs in 'htmlxref.cnf'....Fixes a regression introduced in 868da34d54365023223a4ff7520043ba55ad64e8. * doc/htmlxref.cnf (GUIX): Remove "/guix". Ludovic Courtès
2022-06-16doc: Remove obsolete comment from htmlxref.cnf....This is follow up to <https://issues.guix.gnu.org/55290>. * doc/htmlxref.cnf (geiser): Delete obsolete comment. Maxim Cournoyer
2022-04-08doc: Fix cookbook URLs in htmlxref.cnf....Reported by Greg Hogan <code@greghogan.com>. * doc/htmlxref.cnf (GUIX_ROOT): New variable. (GUIX, GUIX_COOKBOOK): Adjust. Ludovic Courtès
2021-10-04doc: Update htmlxref.cnf....Update and fix broken references to cuirass, git, and guix-cookbook. * doc/htmlxref.cnf: Update from Texinfo. Factorize Guix manuals. (cuirass, git, guix-cookbook, guix-cookbook.de, guix-cookbook.fr): New entries. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Sarah Morgensen
2021-04-24doc: Fix cross-reference URL to translated manual....* doc/htmlxref.cnf: Fix translated manual URL. Julien Lepiller