summaryrefslogtreecommitdiffstats
path: root/CommandListener.cpp
diff options
context:
space:
mode:
authorKen Sumrall <ksumrall@android.com>2011-01-17 18:29:19 -0800
committerKen Sumrall <ksumrall@android.com>2011-01-17 18:29:19 -0800
commit57b63e61cb41e377708a4fdf18ecc80eb1b2b521 (patch)
treef2e1ce5d8fbdb30b2e20c3cc659c7594616baec5 /CommandListener.cpp
parent8ddbe40a8a8708dac7c472fa8c098c8f7b24534c (diff)
downloadandroid_system_vold-57b63e61cb41e377708a4fdf18ecc80eb1b2b521.tar.gz
android_system_vold-57b63e61cb41e377708a4fdf18ecc80eb1b2b521.tar.bz2
android_system_vold-57b63e61cb41e377708a4fdf18ecc80eb1b2b521.zip
Minor tweaks to logging for the cryptfs changepw command.
Change-Id: I87ff9788a56de6d461002407bf6c3cd4c6f900ee
Diffstat (limited to 'CommandListener.cpp')
-rw-r--r--CommandListener.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/CommandListener.cpp b/CommandListener.cpp
index 03cb179..4c9e4bc 100644
--- a/CommandListener.cpp
+++ b/CommandListener.cpp
@@ -547,7 +547,7 @@ int CommandListener::CryptfsCmd::runCommand(SocketClient *cli,
cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: cryptfs changepw <oldpasswd> <newpasswd>", false);
return 0;
}
- SLOGD("cryptfs changepw <oldpw> <newpw>");
+ SLOGD("cryptfs changepw {} {}");
rc = cryptfs_changepw(argv[2], argv[3]);
} else {
dumpArgs(argc, argv, -1);