~brightbox/bird/bird-packaging

« back to all changes in this revision

Viewing changes to filter/f-util.c

  • Committer: Ondřej Surý
  • Date: 2011-09-12 06:59:16 UTC
  • mfrom: (1.1.23)
  • Revision ID: git-v1:da868fd891ce15438ca516573979a5df54601e5a
Merge commit 'upstream/1.3.3' into debian-sid

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
  ret = cfg_alloc(sizeof(struct f_inst));
20
20
  ret->code = ret->aux = 0;
21
21
  ret->arg1 = ret->arg2 = ret->next = NULL;
22
 
  ret->lineno = conf_lino;
 
22
  ret->lineno = ifs->conf_lino;
23
23
  return ret;
24
24
}
25
25