]> git.stg.codes - stg.git/commitdiff
Исправлена ошибка компиляции файлового плагина
authorMaxim Mamontov <faust@gts.dp.ua>
Fri, 17 Dec 2010 11:08:11 +0000 (13:08 +0200)
committerMaxim Mamontov <faust@gts.dp.ua>
Fri, 17 Dec 2010 11:08:11 +0000 (13:08 +0200)
projects/stargazer/plugins/store/files/file_store.cpp

index c94a603683b2d20f5b8c645271553800c4839a0d..b926eb6a1ad64208c3a054bb71e6a7bcc1b28f08 100644 (file)
@@ -1053,7 +1053,7 @@ fileName = storeSettings.GetUsersDir() + "/" + login + "/stat";
     cfstat.WriteInt("LastActivityTime", stat.lastActivityTime);
     }
 
-e = chmod(fileName.c_str(), storeSettings.GetStatMode());
+int e = chmod(fileName.c_str(), storeSettings.GetStatMode());
 e += chown(fileName.c_str(), storeSettings.GetStatUID(), storeSettings.GetStatGID());
 
 if (e)