| 273 | } |
| 274 | |
| 275 | static int print_var(struct hf_wrapper *w, int offset) |
| 276 | { |
| 277 | switch(w->var_type) { |
| 278 | case W_HF: |
| 279 | return print_hf_var(w, offset); |
| 280 | case W_AV: |
| 281 | return print_av_var(w); |
| 282 | default: |
| 283 | LM_CRIT("unknown type: %d\n", w->var_type ); |
| 284 | return 0; |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | void release_vars(struct hf_wrapper *list) |
| 289 | { |
no test coverage detected