am 975f8511: am 2e2dc003: Merge "crash_reporter: Fix path to dbus-send"

* commit '975f85110b75d36c59977f2482154bbbda986ee7':
  crash_reporter: Fix path to dbus-send
This commit is contained in:
Steve Fung 2015-08-21 23:36:45 +00:00 committed by Android Git Automerger
commit 2083a3befc

View file

@ -74,7 +74,7 @@ static void CountUncleanShutdown() {
static void CountUserCrash() { static void CountUserCrash() {
SendCrashMetrics(kCrashKindUser, "user"); SendCrashMetrics(kCrashKindUser, "user");
std::string command = StringPrintf( std::string command = StringPrintf(
"/usr/bin/dbus-send --type=signal --system / \"%s\" &", "/system/bin/dbus-send --type=signal --system / \"%s\" &",
kUserCrashSignal); kUserCrashSignal);
// Announce through D-Bus whenever a user crash happens. This is // Announce through D-Bus whenever a user crash happens. This is
// used by the metrics daemon to log active use time between // used by the metrics daemon to log active use time between