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
@@ -8,4 +8,5 @@
#include <set>
using namespace std;
+#include <konforka/util.h>
#include "sitecing/sitecing_util.h"
#include "sitecing/util.h"
@@ -79,5 +80,5 @@ void build_http_status_handlers(const string& target) {
set<string> stop_list;
string t = "/";
- t += normalize_path(target,strip_leading_slash);
+ t += konforka::normalize_path(target,konforka::strip_leading_slash);
for(;;) {
if(t[t.length()-1]=='/') {
@@ -148,5 +149,5 @@ void build(const string& target) {
if(!strcmp(de->d_name,".."))
continue;
- string subtarget = normalize_path(target+"/"+de->d_name);
+ string subtarget = konforka::normalize_path(target+"/"+de->d_name);
struct stat sts;
if(stat((site_space->config.root_source+subtarget).c_str(),&sts))