diff options
author | Colin Cross <ccross@android.com> | 2013-04-17 21:45:45 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-04-17 21:45:45 +0000 |
commit | d7cab8bff1334ba48620a16d1b98f2ae623fee7d (patch) | |
tree | cffbeb172105d60adf9f1644b2444213fde1fa70 | |
parent | ffc5a4a529338c834954e58de2701572eb0752f0 (diff) | |
parent | a5ad539cff9dba92650425b8bec79c071ef5993b (diff) | |
download | system_core-d7cab8bff1334ba48620a16d1b98f2ae623fee7d.zip system_core-d7cab8bff1334ba48620a16d1b98f2ae623fee7d.tar.gz system_core-d7cab8bff1334ba48620a16d1b98f2ae623fee7d.tar.bz2 |
Merge "adb : add missing connection states"
-rw-r--r-- | adb/adb.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -401,6 +401,10 @@ static char *connection_state_name(atransport *t) return "bootloader"; case CS_DEVICE: return "device"; + case CS_RECOVERY: + return "recovery"; + case CS_SIDELOAD: + return "sideload"; case CS_OFFLINE: return "offline"; default: |