fix for network password
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14099 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -41,7 +41,7 @@ public:
|
||||
bigtime_t PasswordTime() {return fPasswordTime;}
|
||||
const char *Password() { return fPassword.String(); }
|
||||
const char *LockMethod() { return fLockMethod.String(); }
|
||||
bool IsNetworkPassword() {return fIsNetworkPassword;}
|
||||
bool IsNetworkPassword() {return (strcmp(fLockMethod.String(), "custom") != 0);}
|
||||
const char *ModuleName() {return fModuleName.String();}
|
||||
status_t GetState(const char *name, BMessage *stateMsg);
|
||||
|
||||
@@ -78,8 +78,6 @@ private:
|
||||
BString fModuleName;
|
||||
BString fLockMethod;
|
||||
|
||||
bool fIsNetworkPassword;
|
||||
|
||||
BMessage fSettings;
|
||||
BPath fSSPath, fNetworkPath;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user