From kde-commits Sun Jul 30 20:06:24 2006 From: Allan Sandfeld Jensen Date: Sun, 30 Jul 2006 20:06:24 +0000 To: kde-commits Subject: branches/work/kio_virtualfile/kioslave/file Message-Id: <1154289984.332381.28576.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=115428999110779 SVN commit 567986 by carewolf: Clearer code M +2 -2 file.cc --- branches/work/kio_virtualfile/kioslave/file/file.cc #567985:567986 @@ -364,7 +364,7 @@ void FileProtocol::open( const KUrl& url, int access ) { - kDebug( 7101 ) << "File::open" << endl; + kDebug(7101) << "FileProtocol::open " << url.url() << endl; QByteArray _path( QFile::encodeName(url.path())); KDE_struct_stat buff; @@ -488,7 +488,7 @@ } break; } - close( fd ); + ::close( fd ); finished(); }