/*
- * $Id: AIODiskFile.cc,v 1.4 2007/04/28 22:26:40 hno Exp $
+ * $Id: AIODiskFile.cc,v 1.5 2007/05/19 05:03:48 amosjeffries Exp $
*
* SQUID Web Proxy Cache http://www.squid-cache.org/
* ----------------------------------------------------------
{
/* Simulate async calls */
#ifdef _SQUID_WIN32_
- fd = aio_open(path.buf(), flags);
+ fd = aio_open(path.c_str(), flags);
#else
- fd = file_open(path.buf() , flags);
+ fd = file_open(path.c_str() , flags);
#endif
ioRequestor = callback;