1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/net/xorp/files/patch-policy__configuration.hh
Antoine Brodin 54dc2eefda - Update to 1.8.5
- Unbreak and unexpire
- Stage support

PR:		ports/186982
Submitted by:	Johannes 5 Joemann
2014-02-26 21:54:59 +00:00

23 lines
811 B
C++

--- ./policy/configuration.hh.orig 2011-03-16 21:27:54.000000000 +0000
+++ ./policy/configuration.hh 2014-02-26 21:17:13.000000000 +0000
@@ -43,11 +43,19 @@
// XXX we go reverse in order to make peer specific policies override global
// ones. Global is "" so it's always smallest (first).
+/*
#define FOR_ALL_POLICIES(n) \
for (PROTOCOL::reverse_iterator i = _protocols.rbegin(); \
i != _protocols.rend(); ++i) \
for (POLICY::reverse_iterator n = i->second->rbegin(); \
n != i->second->rend(); ++n)
+*/
+#define FOR_ALL_POLICIES(n) \
+ if (! _protocols.empty()) \
+ for (PROTOCOL::iterator i = _protocols.end(); \
+ i-- != _protocols.begin(); ) \
+ for (POLICY::iterator n = i->second->end(); \
+ (! i->second->empty()) & (n-- != i->second->begin()); )
class IEMap {
public: