diff options
author | Andrej Zverev <az@FreeBSD.org> | 2006-02-03 11:39:37 +0000 |
---|---|---|
committer | Andrej Zverev <az@FreeBSD.org> | 2006-02-03 11:39:37 +0000 |
commit | 70b6c15f1a970da5ccb70c2f50046a0192158356 (patch) | |
tree | 7a1153e33cb3f8a86ba82679ce82f2363f84a901 /net/quagga/files/patch-lib-buffer.c | |
parent | No KDE release without an xpdf-inherited security issue. (diff) |
- Update to 0.99.3
- Fix build on 4.11 by sem@ (files/patch-lib-buffer.c
files/patch-ospfd-ospfd.h
--------------------------------
Some known problems outstanding:
- bgpd: prefix counts can get a bit screwy after clears/resets
this is mostly cosmetic *unless* you use max-prefix counts.
- bgpd: There is a memory leak if 'set community' is used in
route-maps. This is present in 0.98 too. See bugzilla #89.
- ospfd: 'default-originate always' loses the 'always' qualifier.
Some regressions fixed in 0.99.3:
- bgpd: workqueues were too conservative and could backlog under load
(e.g. continual session up then reset), eventually leading to OOM.
- ospfd: crash on startup (and only startup) if redistribute was
enabled fixed.
- bgpd: SEGV in bgp_aspath.c fixed.
- bgpd: memory leak in bgp_aspath.c fixed
- ospfd: oversize LSA support was not functional, fixed.
- ospfd: leak of connected struct fixed
- ospfd: NSM problems fixed, see bug #234
- vtysh: integrated config file reading should work again.
- zserv: flags above 32bits should make it across to daemons now
(affecting Solaris and IFF_NOXMIT and IFF_VIRTUAL)
- ripd: MD5 auth verification fixed.
The full changelog is available at:
http://www.quagga.net/download/quagga-0.99.3.changelog.txt
PR: ports/92524
Submitted by: Boris Kovalenko <boris@tagnet.ru> (maintainer)
Notes
Notes:
svn path=/head/; revision=155127
Diffstat (limited to '')
-rw-r--r-- | net/quagga/files/patch-lib-buffer.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/quagga/files/patch-lib-buffer.c b/net/quagga/files/patch-lib-buffer.c new file mode 100644 index 000000000000..61fda3c21d71 --- /dev/null +++ b/net/quagga/files/patch-lib-buffer.c @@ -0,0 +1,11 @@ +--- lib/buffer.c.orig Fri Feb 3 13:24:03 2006 ++++ lib/buffer.c Fri Feb 3 13:24:15 2006 +@@ -53,7 +53,7 @@ + size_t sp; + + /* Actual data stream (variable length). */ +- unsigned char data[]; /* real dimension is buffer->size */ ++ unsigned char *data; /* real dimension is buffer->size */ + }; + + /* It should always be true that: 0 <= sp <= cp <= size */ |