finally move buildroot-ng to trunk
[openwrt/staging/stintel.git] / package / isakmpd / patches / 040-security_fix.patch
1 Index: sbin/isakmpd/ipsec.c
2 ===================================================================
3 RCS file: /cvs/src/sbin/isakmpd/ipsec.c,v
4 retrieving revision 1.122
5 retrieving revision 1.122.2.1
6 diff -u -p -r1.122 -r1.122.2.1
7 --- isakmpd/ipsec.c 23 Sep 2005 14:44:03 -0000 1.122
8 +++ isakmpd/ipsec.c 19 Aug 2006 20:23:28 -0000 1.122.2.1
9 @@ -2076,9 +2076,10 @@ ipsec_proto_init(struct proto *proto, ch
10 {
11 struct ipsec_proto *iproto = proto->data;
12
13 - if (proto->sa->phase == 2 && section)
14 - iproto->replay_window = conf_get_num(section, "ReplayWindow",
15 - DEFAULT_REPLAY_WINDOW);
16 + if (proto->sa->phase == 2)
17 + iproto->replay_window = section ? conf_get_num(section,
18 + "ReplayWindow", DEFAULT_REPLAY_WINDOW) :
19 + DEFAULT_REPLAY_WINDOW;
20 }
21
22 /*