summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan Cybulski <j.cybulski@samsung.com>2015-01-23 12:22:23 +0100
committerJan Cybulski <j.cybulski@samsung.com>2015-01-23 12:24:27 +0100
commit759fc4ef2b218d37cebbc998eb683f26ebacd83d (patch)
treedb9ffcb16adb24bcbe04e9ac061fa184fc08cfef /src
parent278527c6f852600922e5df92c4aba9c81e265fd5 (diff)
downloadsecurity-manager-759fc4ef2b218d37cebbc998eb683f26ebacd83d.tar.gz
security-manager-759fc4ef2b218d37cebbc998eb683f26ebacd83d.tar.bz2
security-manager-759fc4ef2b218d37cebbc998eb683f26ebacd83d.zip
fix: unbreak --install option caused by wrong --manage-users parameter
--manage-users option is not required. Change-Id: I523a11ddc0e4925059b7759c009d8f9c129f3ae9 Signed-off-by: Jan Cybulski <j.cybulski@samsung.com>
Diffstat (limited to 'src')
-rw-r--r--src/cmd/security-manager-cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/security-manager-cmd.cpp b/src/cmd/security-manager-cmd.cpp
index e489d6c7..a1a205e4 100644
--- a/src/cmd/security-manager-cmd.cpp
+++ b/src/cmd/security-manager-cmd.cpp
@@ -59,7 +59,7 @@ static po::options_description getGenericOptions()
opts.add_options()
("help,h", "produce help message")
("install,i", "install an application")
- ("manage-users,m", po::value<std::string>()->required(), "add or remove user, parameter is 'a' or 'add' (for add) and 'r' or 'remove' (for remove)")
+ ("manage-users,m", po::value<std::string>(), "add or remove user, parameter is 'a' or 'add' (for add) and 'r' or 'remove' (for remove)")
;
return opts;
}