Changeset 49718 in vbox for trunk/src/VBox/Main/src-server/freebsd
- Timestamp:
- Nov 29, 2013 10:51:54 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 91009
- Location:
- trunk/src/VBox/Main/src-server/freebsd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/freebsd/NetIf-freebsd.cpp
r48016 r49718 44 44 #include <netinet/in.h> 45 45 46 #include <stdlib.h> 46 47 #include <stdio.h> 47 48 #include <unistd.h> … … 389 390 390 391 struct ifreq IfReq; 391 RTS TrCopy(IfReq.ifr_name, sizeof(IfReq.ifr_name), pInfo->szShortName);392 RTStrCopy(IfReq.ifr_name, sizeof(IfReq.ifr_name), pInfo->szShortName); 392 393 if (ioctl(sock, SIOCGIFFLAGS, &IfReq) < 0) 393 394 { -
trunk/src/VBox/Main/src-server/freebsd/PerformanceFreeBSD.cpp
r48010 r49718 110 110 } 111 111 112 int getDiskListByFs(const char *name, DiskList& list) 113 { 114 return VERR_NOT_IMPLEMENTED; 115 } 116 112 117 } /* namespace pm */ 113 118
Note:
See TracChangeset
for help on using the changeset viewer.