1 diff --exclude '*Po' -ur ctorrent/btfiles.cpp ctorrent.new/btfiles.cpp
2 --- ctorrent/btfiles.cpp 2004-09-09 00:10:51.000000000 +0100
3 +++ ctorrent.new/btfiles.cpp 2005-02-03 17:51:52.000000000 +0000
8 - if( !getwd(full_cur) ) return -1;
9 + if( !getcwd(full_cur, MAXPATHLEN) ) return -1;
15 }else if( S_IFDIR & sb.st_mode ){
17 - if( !getwd(wd) ) return -1;
18 + if( !getcwd(wd, MAXPATHLEN) ) return -1;
19 m_directory = new char[strlen(pathname) + 1];
21 if( !m_directory ) return -1;