conf: fix reverspath parsing: the string in the 2nd arg is actually the inner match
this fixes bug #64, https://www.banu.com/bugzilla/show_bug.cgi?id=64 the quotes of the string were part of the revers path after parseing. Michael
This commit is contained in:
parent
f63c29c886
commit
fd879e45c8
@ -739,8 +739,8 @@ static HANDLE_FUNC (handle_reversepath)
|
||||
if (!arg1)
|
||||
return -1;
|
||||
|
||||
if (match[3].rm_so != -1) {
|
||||
arg2 = get_string_arg (line, &match[3]);
|
||||
if (match[4].rm_so != -1) {
|
||||
arg2 = get_string_arg (line, &match[4]);
|
||||
if (!arg2) {
|
||||
safefree (arg1);
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user