Module: sip-router Branch: master Commit: 443ec921ff1a6a6a42bb0267d24c8267773afd24 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=443ec921...
Author: Henning Westerholt henning.westerholt@1und1.de Committer: Henning Westerholt henning.westerholt@1und1.de Date: Thu Apr 30 11:15:05 2009 +0200
fix lib/binrpc compilation (include path, s/modules/modules_s/)
---
lib/binrpc/binrpc_api.c | 6 +++--- lib/binrpc/binrpc_api.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/binrpc/binrpc_api.c b/lib/binrpc/binrpc_api.c index faf82d1..c76267c 100644 --- a/lib/binrpc/binrpc_api.c +++ b/lib/binrpc/binrpc_api.c @@ -44,9 +44,9 @@ #include <time.h> /* time */ /* #include <stropts.h> - is this really needed? --andrei */
-#include "../../modules/ctl/ctl_defaults.h" /* default socket & port */ -#include "../../modules/ctl/init_socks.h" -#include "../../modules/ctl/binrpc.c" /* ugly hack */ +#include "../../modules_s/ctl/ctl_defaults.h" /* default socket & port */ +#include "../../modules_s/ctl/init_socks.h" +#include "../../modules_s/ctl/binrpc.c" /* ugly hack */
#include "binrpc_api.h"
diff --git a/lib/binrpc/binrpc_api.h b/lib/binrpc/binrpc_api.h index b7a41ed..ef8dfe8 100644 --- a/lib/binrpc/binrpc_api.h +++ b/lib/binrpc/binrpc_api.h @@ -34,7 +34,7 @@ #ifndef BINRPC_API_H_ #define BINRPC_API_H_
-#include "../../modules/ctl/binrpc.h" +#include "../../modules_s/ctl/binrpc.h"
struct binrpc_handle { int socket;