Module: sip-router Branch: janakj/kcore Commit: 9edd0fd57e763081f096cfc4fb41922acaeed173 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=9edd0fd5...
Author: Jan Janak jan@iptel.org Committer: Jan Janak jan@iptel.org Date: Mon Mar 16 15:25:06 2009 +0100
Fix paths to header files in the sr core.
---
lib/kcore/regexp.c | 2 +- lib/kcore/regexp.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/kcore/regexp.c b/lib/kcore/regexp.c index da724ca..a4766e1 100644 --- a/lib/kcore/regexp.c +++ b/lib/kcore/regexp.c @@ -33,7 +33,7 @@ #include <regex.h> #include <ctype.h> #include "regexp.h" -#include "dprint.h" +#include "../../dprint.h"
/*! \brief Replace in replacement tokens \d with substrings of string pointed by * pmatch. diff --git a/lib/kcore/regexp.h b/lib/kcore/regexp.h index e63ed60..0c013a1 100644 --- a/lib/kcore/regexp.h +++ b/lib/kcore/regexp.h @@ -32,7 +32,7 @@ #ifndef REGEXP_H #define REGEXP_H
-#include "str.h" +#include "../../str.h"
#define MAX_MATCH 6