mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-12 23:40:04 +00:00
libsofia: handle mid-line comments in resolv.conf patch from Lee Verberne (SFSIP-152)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13749 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
3398ddfc82
commit
acd67cb318
@ -1 +1 @@
|
||||
Thu Jun 4 16:10:50 CDT 2009
|
||||
Wed Jun 10 11:14:52 EDT 2009
|
||||
|
@ -2270,11 +2270,11 @@ int sres_parse_config(sres_config_t *c, FILE *f)
|
||||
/* Skip whitespace at the beginning ...*/
|
||||
b = buf + strspn(buf, " \t");
|
||||
|
||||
/* ... and at the end of line */
|
||||
for (len = strlen(b); len > 0 && strchr(" \t\r\n", b[len - 1]); len--)
|
||||
/* ... and comments + whitespace at the end */
|
||||
for (len = strcspn(b, "#;"); len > 0 && strchr(" \t\r\n", b[len - 1]); len--)
|
||||
;
|
||||
|
||||
if (len == 0 || b[0] == '#') /* Empty line or comment */
|
||||
if (len == 0) /* Empty line or comment */
|
||||
continue;
|
||||
|
||||
b[len] = '\0';
|
||||
|
Loading…
x
Reference in New Issue
Block a user