diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2009-05-29 22:49:30 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2009-05-29 22:49:30 +0200 |
commit | 874b868544c3a6ba45ace062091cc3aee007b719 (patch) | |
tree | dc9558c4e5e1537ea11469bb4be93bf941b9ee28 /sysdep/unix/krt.Y | |
parent | 51f4469f03759642870a45634d9b53054e3deb92 (diff) | |
download | bird-874b868544c3a6ba45ace062091cc3aee007b719.tar bird-874b868544c3a6ba45ace062091cc3aee007b719.zip |
Implements primary address selection base on 'primary' option.
Diffstat (limited to 'sysdep/unix/krt.Y')
-rw-r--r-- | sysdep/unix/krt.Y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/unix/krt.Y b/sysdep/unix/krt.Y index 24f2dd2..40f1af9 100644 --- a/sysdep/unix/krt.Y +++ b/sysdep/unix/krt.Y @@ -82,7 +82,7 @@ kif_item: /* Scan time of 0 means scan on startup only */ THIS_KIF->scan_time = $3; } - | PRIMARY TEXT prefix_or_ipa { + | PRIMARY text_or_none prefix_or_ipa { struct kif_primary_item *kpi = cfg_alloc(sizeof (struct kif_primary_item)); kpi->pattern = $2; kpi->prefix = $3.addr; |