From 3da361ee77ac5b3daf90f7c91765e85eccd6a18a Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Fri, 1 Apr 2005 21:31:12 +0000 Subject: [PATCH] optimize file reading in pbx_spool (bug #3927) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5351 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- pbx/pbx_spool.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pbx/pbx_spool.c b/pbx/pbx_spool.c index 865c0ad049..0abf970425 100755 --- a/pbx/pbx_spool.c +++ b/pbx/pbx_spool.c @@ -94,10 +94,8 @@ static int apply_outgoing(struct outgoing *o, char *fn, FILE *f) char buf[256]; char *c, *c2; int lineno = 0; - while(!feof(f)) { - fgets(buf, sizeof(buf), f); + while(fgets(buf, sizeof(buf), f)) { lineno++; - if (!ast_strlen_zero(buf)) { /* Trim comments */ c = buf; while ((c = strchr(c, '#'))) { @@ -186,7 +184,6 @@ static int apply_outgoing(struct outgoing *o, char *fn, FILE *f) } else ast_log(LOG_NOTICE, "Syntax error at line %d of %s\n", lineno, fn); } - } } strncpy(o->fn, fn, sizeof(o->fn) - 1); if (ast_strlen_zero(o->tech) || ast_strlen_zero(o->dest) || (ast_strlen_zero(o->app) && ast_strlen_zero(o->exten))) {