Changeset 48020 in vbox for trunk/src/VBox/Main/src-server/solaris/NetIf-solaris.cpp
- Timestamp:
- Aug 23, 2013 12:02:42 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 88348
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/solaris/NetIf-solaris.cpp
r48016 r48020 86 86 } 87 87 88 kstat_t *ksAdapter = kstat_lookup(kc, "link", -1, (char *)name);88 kstat_t *ksAdapter = kstat_lookup(kc, (char *)"link", -1, (char *)name); 89 89 if (ksAdapter == 0) 90 90 { 91 91 char szModule[KSTAT_STRLEN]; 92 92 uint32_t uInstance = getInstance(name, szModule); 93 ksAdapter = kstat_lookup(kc, szModule, uInstance, "phys");93 ksAdapter = kstat_lookup(kc, szModule, uInstance, (char *)"phys"); 94 94 if (ksAdapter == 0) 95 95 ksAdapter = kstat_lookup(kc, szModule, uInstance, (char*)name);
Note:
See TracChangeset
for help on using the changeset viewer.