From: Ivo Timmermans Date: Wed, 29 Nov 2000 14:27:24 +0000 (+0000) Subject: Use readline() in read_config_file() instead of fgets. X-Git-Tag: release-1.0pre4~113 X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=9e55426d72fd77fda891edd0023dab2f9909639e Use readline() in read_config_file() instead of fgets. --- diff --git a/src/conf.c b/src/conf.c index 7399c823..aaa44899 100644 --- a/src/conf.c +++ b/src/conf.c @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: conf.c,v 1.9.4.24 2000/11/29 14:24:40 zarq Exp $ + $Id: conf.c,v 1.9.4.25 2000/11/29 14:27:24 zarq Exp $ */ #include "config.h" @@ -197,7 +197,7 @@ int read_config_file(config_t **base, const char *fname) { int err = -1; FILE *fp; - char line[MAXBUFSIZE]; /* There really should not be any line longer than this... */ + char *line; char *p, *q; int i, lineno = 0; config_t *cfg; @@ -209,21 +209,15 @@ cp for(;;) { - if(fgets(line, MAXBUFSIZE, fp) == NULL) - { - err = 0; - break; - } + if((line = readline(fp)) == NULL) + { + err = -1; + break; + } lineno++; - if(!index(line, '\n')) - { - syslog(LOG_ERR, _("Line %d too long while reading config file %s"), lineno, fname); - break; - } - - if((p = strtok(line, "\t\n\r =")) == NULL) + if((p = strtok(line, "\t =")) == NULL) continue; /* no tokens on this line */ if(p[0] == '#')