mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:57:31 +02:00
b5cb1795de
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7490 3c298f89-4303-0410-b956-a3cf2f4a3e73
19 lines
633 B
Diff
19 lines
633 B
Diff
Index: isakmpd-20041012.orig/ipsec.c
|
|
===================================================================
|
|
--- isakmpd-20041012.orig.orig/ipsec.c 2007-06-04 13:22:39.283883224 +0200
|
|
+++ isakmpd-20041012.orig/ipsec.c 2007-06-04 13:22:40.247736696 +0200
|
|
@@ -2176,9 +2176,10 @@
|
|
{
|
|
struct ipsec_proto *iproto = proto->data;
|
|
|
|
- if (proto->sa->phase == 2 && section)
|
|
- iproto->replay_window = conf_get_num(section, "ReplayWindow",
|
|
- DEFAULT_REPLAY_WINDOW);
|
|
+ if (proto->sa->phase == 2)
|
|
+ iproto->replay_window = section ? conf_get_num(section,
|
|
+ "ReplayWindow", DEFAULT_REPLAY_WINDOW) :
|
|
+ DEFAULT_REPLAY_WINDOW;
|
|
}
|
|
|
|
/*
|