From c81617dfdcd9dbf79b9ad5e5da5e2286b78d7d0b Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Wed, 28 Aug 2024 15:51:02 +0000 Subject: use the right FILE to parse the config, not stdin I typoed the file argument to getline() in rev 1.14 when converting fgetln remnants to getline back in aug 2022. guess not many people are hosting hunt servers. --- games/hunt/huntd/conf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'games') diff --git a/games/hunt/huntd/conf.c b/games/hunt/huntd/conf.c index 4cf86f90db5..73ed49eb32c 100644 --- a/games/hunt/huntd/conf.c +++ b/games/hunt/huntd/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.14 2022/08/08 17:57:05 op Exp $ */ +/* $OpenBSD: conf.c,v 1.15 2024/08/28 15:51:01 op Exp $ */ /* David Leonard , 1999. Public domain. */ #include @@ -252,7 +252,7 @@ load_config(FILE *f, char *fnm) size_t linesize = 0; ssize_t linelen; - while ((linelen = getline(&line, &linesize, stdin)) != -1) { + while ((linelen = getline(&line, &linesize, f)) != -1) { lineno++; if (line[linelen - 1] == '\n') line[linelen - 1] = '\0'; -- cgit v1.2.3