Changeset 20803 in vbox
- Timestamp:
- Jun 23, 2009 7:37:59 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/RDP/client/vrdp/rdpusb.c
r9902 r20803 79 79 while (*p == ' ') p++; // skiping spaces 80 80 81 h = (uint16)strtoul (p, &p, 1 0) & 0xFF;81 h = (uint16)strtoul (p, &p, 16) & 0xFF; 82 82 83 83 if (*p == '.') 84 84 { 85 l = (uint16)strtoul (p + 1, NULL, 1 0) & 0xFF;85 l = (uint16)strtoul (p + 1, NULL, 16) & 0xFF; 86 86 87 87 return (h << 8) + l;
Note:
See TracChangeset
for help on using the changeset viewer.