summaryrefslogtreecommitdiffabout
path: root/src/sitecing-build.cc
Side-by-side diff
Diffstat (limited to 'src/sitecing-build.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--src/sitecing-build.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sitecing-build.cc b/src/sitecing-build.cc
index 4cad0a3..887ef83 100644
--- a/src/sitecing-build.cc
+++ b/src/sitecing-build.cc
@@ -9,2 +9,3 @@
using namespace std;
+#include <konforka/util.h>
#include "sitecing/sitecing_util.h"
@@ -80,3 +81,3 @@ void build_http_status_handlers(const string& target) {
string t = "/";
- t += normalize_path(target,strip_leading_slash);
+ t += konforka::normalize_path(target,konforka::strip_leading_slash);
for(;;) {
@@ -149,3 +150,3 @@ void build(const string& target) {
continue;
- string subtarget = normalize_path(target+"/"+de->d_name);
+ string subtarget = konforka::normalize_path(target+"/"+de->d_name);
struct stat sts;