A change that wasn't needed.

This commit is contained in:
Wayne Davison
2003-12-26 22:59:53 +00:00
parent 0d7d3763f2
commit 49c24eccd4

4
io.c
View File

@@ -406,8 +406,8 @@ int read_filesfrom_line(int fd, char *fname)
}
*s = '\0';
/* Dump comments. */
if (*fname == '#' || *fname == ';')
/* Dump comments if reading locally. */
if (!reading_remotely && (*fname == '#' || *fname == ';'))
goto start;
return s - fname;