projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f7eaed8
)
usb: mtp: fix serial (must be exact 32 chars)
author
Gerd Hoffmann
<kraxel@redhat.com>
Fri, 25 Apr 2014 09:57:07 +0000
(11:57 +0200)
committer
Gerd Hoffmann
<kraxel@redhat.com>
Mon, 5 May 2014 10:57:41 +0000
(12:57 +0200)
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
hw/usb/dev-mtp.c
patch
|
blob
|
history
diff --git
a/hw/usb/dev-mtp.c
b/hw/usb/dev-mtp.c
index dff26182c301b8e6fe7ebe35c19650d0569421af..775dc8d0b268ee9732f0d029251f89e935a6be84 100644
(file)
--- a/
hw/usb/dev-mtp.c
+++ b/
hw/usb/dev-mtp.c
@@
-548,7
+548,7
@@
static MTPData *usb_mtp_get_device_info(MTPState *s, MTPControl *c)
usb_mtp_add_wstr(d, L"" MTP_MANUFACTURER);
usb_mtp_add_wstr(d, L"" MTP_PRODUCT);
usb_mtp_add_wstr(d, L"0.1");
- usb_mtp_add_wstr(d, L"
123456789abcdef
123456789abcdef");
+ usb_mtp_add_wstr(d, L"
0123456789abcdef0
123456789abcdef");
return d;
}