jni: net.TrafficStats: fix getIfaceStat, have it use the iface.

Missing iface8 in call to parseIfaceStats().

Bug: 8304054
Change-Id: Ibb01d86a0f7241cdd8f23401973840673f847efb
This commit is contained in:
JP Abgrall
2013-03-01 23:38:40 -08:00
committed by Android (Google) Code Review
parent e3cbff53a4
commit 7de8125565

View File

@@ -166,7 +166,7 @@ static jlong getIfaceStat(JNIEnv* env, jclass clazz, jstring iface, jint type) {
struct Stats stats;
memset(&stats, 0, sizeof(Stats));
if (parseIfaceStats(NULL, &stats) == 0) {
if (parseIfaceStats(iface8.c_str(), &stats) == 0) {
return getStatsType(&stats, (StatsType) type);
} else {
return UNKNOWN;