From: Tilghman Lesher Date: Mon, 28 Jun 2010 21:38:49 +0000 (+0000) Subject: Also trim trailing blanks on #includes X-Git-Tag: 1.4.34-rc1~2^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f2e2863be444a14e18d559159f42427987d2d43;p=thirdparty%2Fasterisk.git Also trim trailing blanks on #includes git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@272922 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/config.c b/main/config.c index 4a7bad894a..05836b54fe 100644 --- a/main/config.c +++ b/main/config.c @@ -708,7 +708,7 @@ static int process_text_line(struct ast_config *cfg, struct ast_category **cat, if (*c) { *c = '\0'; /* Find real argument */ - c = ast_skip_blanks(c + 1); + c = ast_strip(c + 1); if (!(*c)) c = NULL; } else