diff options
Diffstat (limited to '')
-rw-r--r-- | recursive.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recursive.cc b/recursive.cc index c5f57bd..a0cdaa4 100644 --- a/recursive.cc +++ b/recursive.cc @@ -79,7 +79,7 @@ bool next_filename( std::list< std::string > & filenames, i > 1 && input_filename[i-1] == '/'; --i ) input_filename.resize( i - 1 ); // remove trailing slashes struct stat stdot, *stdotp = 0; - if( input_filename[0] != '/' ) // relative path + if( input_filename[0] != '/' ) // relative file name { if( input_filename == "." ) input_filename.clear(); if( stat( ".", &stdot ) == 0 && S_ISDIR( stdot.st_mode ) ) |