1
0
Fork 0

minor fix to shell-based resolver

This commit is contained in:
bagyenda 2006-03-27 13:00:48 +00:00
parent 2a25a4cd3e
commit dde519afc2
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ static Octstr *mms_resolve(Octstr * phonenum, void *module_data, void *settings_
if (script == NULL || octstr_len(script) == 0)
return 0;
s = octstr_format("%s '%s' ", octstr_get_cstr(phonenum));
s = octstr_format("%s '%s' ", octstr_get_cstr(script), octstr_get_cstr(phonenum));
fp = popen(octstr_get_cstr(s), "r");
octstr_destroy(s);