| 811 | } |
| 812 | |
| 813 | void tpl_set_field_global(tpl_t* tpl, const char* key, const char* val, int len) |
| 814 | { |
| 815 | tpl_tcell_t *section = tpl->first; |
| 816 | tpl_set_field(tpl, key, val, len); |
| 817 | while (section != NULL) |
| 818 | { |
| 819 | /* Recursively set in all sections */ |
| 820 | tpl_set_field_global(section->tpl, key, val, len); |
| 821 | section = section->next; |
| 822 | } |
| 823 | } |
| 824 | |
| 825 | void tpl_set_field_fmt_global(tpl_t* tpl, const char* key, const char* fmt, ...) |
| 826 | { |
no test coverage detected
searching dependent graphs…