X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Ffile_system.cpp;h=e5721dc8e62fb5cc7fcc0bc416d13c436e04a6b4;hb=07ddaed2a657e4d2a3d038fed223fc5827159caf;hp=b605656630676ba72ae7324af9940633dfe5531a;hpb=0f0e6a3689e5d810ec55b68ff455210b1081a021;p=supertux.git diff --git a/src/file_system.cpp b/src/file_system.cpp index b60565663..e5721dc8e 100644 --- a/src/file_system.cpp +++ b/src/file_system.cpp @@ -1,6 +1,25 @@ +// $Id$ +// +// SuperTux +// Copyright (C) 2006 Matthias Braun +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 2 +// of the License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + #include -#include "msg.hpp" +#include "log.hpp" #include "file_system.hpp" #include @@ -25,7 +44,7 @@ std::string basename(const std::string& filename) if(p == std::string::npos) return filename; - return filename.substr(p, filename.size()-p); + return filename.substr(p+1, filename.size()-p-1); } std::string normalize(const std::string& filename) @@ -56,7 +75,7 @@ std::string normalize(const std::string& filename) if(pathelem == "..") { if(path_stack.empty()) { - msg_warning("Invalid '..' in path '" << filename << "'"); + log_warning << "Invalid '..' in path '" << filename << "'" << std::endl; // push it into the result path so that the users sees his error... path_stack.push_back(pathelem); } else {