diff options
Diffstat (limited to 'hscript/user.cc')
-rw-r--r-- | hscript/user.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hscript/user.cc b/hscript/user.cc index d02dcfc..cc656a1 100644 --- a/hscript/user.cc +++ b/hscript/user.cc @@ -28,7 +28,8 @@ Key *RootPassphrase::parseFromData(const std::string data, int lineno, } bool RootPassphrase::validate(ScriptOptions) const { - return false; + /* XXX TODO: not sure what other validation we can / should do here. */ + return true; } bool RootPassphrase::execute(ScriptOptions) const { |