summaryrefslogtreecommitdiffstats
path: root/src/modules/UserBackendHome/UserBackendHome.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/UserBackendHome/UserBackendHome.h')
-rw-r--r--src/modules/UserBackendHome/UserBackendHome.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/UserBackendHome/UserBackendHome.h b/src/modules/UserBackendHome/UserBackendHome.h
index 1e2b0a3..74fa2cb 100644
--- a/src/modules/UserBackendHome/UserBackendHome.h
+++ b/src/modules/UserBackendHome/UserBackendHome.h
@@ -38,6 +38,7 @@ class UserBackendHome : public Common::UserConfigBackend, private Core::Configur
std::string skeleton;
std::string homeDir;
+ unsigned long dirMode;
boost::mutex mutex;
@@ -53,7 +54,7 @@ class UserBackendHome : public Common::UserConfigBackend, private Core::Configur
virtual void deleteUser(const Common::UserInfo &userInfo) throw(Core::Exception);
public:
- UserBackendHome(Common::Application *application0) : application(application0), homeDir("/home") {
+ UserBackendHome(Common::Application *application0) : application(application0), homeDir("/home"), dirMode(0755) {
application->getConfigManager()->registerConfigurable(this);
}