Re: bgpd fix for undefined macros

2022-06-09 Thread Theo Buehler
On Thu, Jun 09, 2022 at 07:07:12PM +0200, Claudio Jeker wrote: > Fix a crash because of a NULL pointer dereference in parse.y ok > > Before: > /etc/bgpd.conf:85: macro 'UNDEFINED' not defined > Segmentation fault > > After: > /etc/bgpd.conf:85: macro 'UNDEFINED' not defined > /etc/bgpd.conf:85:

bgpd fix for undefined macros

2022-06-09 Thread Claudio Jeker
Fix a crash because of a NULL pointer dereference in parse.y Before: /etc/bgpd.conf:85: macro 'UNDEFINED' not defined Segmentation fault After: /etc/bgpd.conf:85: macro 'UNDEFINED' not defined /etc/bgpd.conf:85: syntax error -- :wq Claudio Index: parse.y ===