summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pttbbs/mbbsd/chc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pttbbs/mbbsd/chc.c b/pttbbs/mbbsd/chc.c
index fbd716a1..f63ae972 100644
--- a/pttbbs/mbbsd/chc.c
+++ b/pttbbs/mbbsd/chc.c
@@ -318,12 +318,13 @@ chc_log_poem(void)
struct dirent **namelist;
int n;
+ // TODO use readdir(), don't use lots of memory
n = scandir(BBSHOME"/etc/chess", &namelist, chc_filter, alphasort);
if (n < 0)
perror("scandir");
else {
char buf[80];
- FILE *fp;
+ FILE *fp; // XXX shadow global fp
sprintf(buf, BBSHOME"/etc/chess/%s", namelist[rand() % n]->d_name);
if ((fp = fopen(buf, "r")) == NULL)
return -1;