From ce4ab835621fb202fd4b1711b79f7793e83aca79 Mon Sep 17 00:00:00 2001 From: Reinhard Pfau Date: Mon, 13 Apr 2009 00:25:07 +0200 Subject: [PATCH] updated to use stuff from local utils --- asyncio/async_process.cpp | 4 ++-- asyncio/async_process.hpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/asyncio/async_process.cpp b/asyncio/async_process.cpp index 4ce8a3d..5169b5c 100644 --- a/asyncio/async_process.cpp +++ b/asyncio/async_process.cpp @@ -37,7 +37,7 @@ on this file might be covered by the GNU General Public License. #include #include -#include +//#include #ifdef NOISEDEBUG @@ -395,7 +395,7 @@ bool ProcessImplementation::setWorkDir(const std::string& workdir) } if (not workdir.empty()) { - I2n::Stat stat(workdir); + Utils::FileStat stat(workdir); if (not stat or not stat.is_directory()) { return false; diff --git a/asyncio/async_process.hpp b/asyncio/async_process.hpp index 29b5346..b0bdf0f 100644 --- a/asyncio/async_process.hpp +++ b/asyncio/async_process.hpp @@ -32,8 +32,8 @@ on this file might be covered by the GNU General Public License. #include -#include -#include +#include +#include #include "async_io.hpp" -- 1.7.1