SVN commit 1057086 by tmcguire: Use the correct permissions (S_IFDIR) so that KZip doesn't assert when opening the archive. Not needed in KDE4, the default permissions there are ok. M +4 -1 kzip.cpp --- branches/KDE/3.5/kdelibs/kio/kio/kzip.cpp #1057085:1057086 @@ -1059,7 +1059,10 @@ QString dirName = name; if (!name.endsWith("/")) dirName = dirName.append('/'); - return writeFile(dirName, user, group, 0, 0); + + mode_t perm = 040755; + time_t the_time = time(0); + return writeFile(dirName, user, group, 0, perm, the_time, the_time, the_time, 0); } // Doesn't need to be reimplemented anymore. Remove for KDE-4.0