File radius.h from kamailio core was moved to libkcore and we need to
update paths to the header file accordingly.
---
modules/acc/acc.c | 2 +-
modules/acc/acc_extra.h | 2 +-
modules/acc/acc_mod.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/acc/acc.c b/modules/acc/acc.c
index 49afdf0..b9fd933 100644
--- a/modules/acc/acc.c
+++ b/modules/acc/acc.c
@@ -63,7 +63,7 @@
#include "acc_logic.h"
#ifdef RAD_ACC
-#include "../../radius.h"
+#include "../../lib/kcore/radius.h"
#endif
#ifdef DIAM_ACC
diff --git a/modules/acc/acc_extra.h b/modules/acc/acc_extra.h
index 3ecd4aa..9550793 100644
--- a/modules/acc/acc_extra.h
+++ b/modules/acc/acc_extra.h
@@ -77,7 +77,7 @@ int legs2strar( struct acc_extra *legs, struct sip_msg *rq, str
*val_arr,
int extra2int( struct acc_extra *extra, int *attrs );
#ifdef RAD_ACC
-#include "../../radius.h"
+#include "../../lib/kcore/radius.h"
int extra2attrs( struct acc_extra *extra, struct attr *attrs, int offset);
#endif
diff --git a/modules/acc/acc_mod.c b/modules/acc/acc_mod.c
index 17f159a..fa32222 100644
--- a/modules/acc/acc_mod.c
+++ b/modules/acc/acc_mod.c
@@ -74,7 +74,7 @@
#include "acc_logic.h"
#ifdef RAD_ACC
-#include "../../radius.h"
+#include "../../lib/kcore/radius.h"
#endif
#ifdef DIAM_ACC
--
1.5.6.5