summaryrefslogtreecommitdiff
path: root/src/sp_config_keywords.c
diff options
context:
space:
mode:
authorjvoisin2017-10-09 11:54:11 +0200
committerGitHub2017-10-09 11:54:11 +0200
commit7234fdbb0cb0dd45ed1d6e7814c91e596126ee25 (patch)
tree1b29ad0e25f37b55390d309fd0b7f4cd406cbb7a /src/sp_config_keywords.c
parent50bb0ed72d5c221d40f16690d980db5e7ccee46a (diff)
Implement matching on the calltrace (#17)
* Implement matching on the calltrace
Diffstat (limited to 'src/sp_config_keywords.c')
-rw-r--r--src/sp_config_keywords.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sp_config_keywords.c b/src/sp_config_keywords.c
index cf52ae3..d6107c3 100644
--- a/src/sp_config_keywords.c
+++ b/src/sp_config_keywords.c
@@ -185,6 +185,10 @@ int parse_disabled_functions(char *line) {
185 return -1; 185 return -1;
186 } 186 }
187 187
188 if (df->function) {
189 df->functions_list = parse_functions_list(df->function);
190 }
191
188 if (df->param && strchr(df->param, '[')) { // assume that this is an array 192 if (df->param && strchr(df->param, '[')) { // assume that this is an array
189 df->param_array_keys = sp_new_list(); 193 df->param_array_keys = sp_new_list();
190 if (0 != array_to_list(&df->param, &df->param_array_keys)) { 194 if (0 != array_to_list(&df->param, &df->param_array_keys)) {