[asterisk-commits] tilghman: branch 1.4 r272922 - /branches/1.4/main/config.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jun 28 16:38:53 CDT 2010
Author: tilghman
Date: Mon Jun 28 16:38:49 2010
New Revision: 272922
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=272922
Log:
Also trim trailing blanks on #includes
Modified:
branches/1.4/main/config.c
Modified: branches/1.4/main/config.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/main/config.c?view=diff&rev=272922&r1=272921&r2=272922
==============================================================================
--- branches/1.4/main/config.c (original)
+++ branches/1.4/main/config.c Mon Jun 28 16:38:49 2010
@@ -708,7 +708,7 @@
if (*c) {
*c = '\0';
/* Find real argument */
- c = ast_skip_blanks(c + 1);
+ c = ast_strip(c + 1);
if (!(*c))
c = NULL;
} else
More information about the asterisk-commits
mailing list