Changeset 17997 in vbox
- Timestamp:
- Mar 17, 2009 7:56:52 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/generic/NetIf-generic.cpp
r17981 r17997 32 32 #define VBOXNETADPCTL_NAME "VBoxNetAdpCtl" 33 33 34 static int NetIfAdpCtl(HostNetworkInterface * pIf, c har *pszAddr, char *pszOption,char *pszMask)34 static int NetIfAdpCtl(HostNetworkInterface * pIf, const char *pszAddr, const char *pszOption, const char *pszMask) 35 35 { 36 36 const char *args[] = { NULL, NULL, pszAddr, pszOption, pszMask, NULL }; … … 75 75 int NetIfEnableStaticIpConfig(VirtualBox * /* vBox */, HostNetworkInterface * pIf, ULONG aOldIp, ULONG aNewIp, ULONG aMask) 76 76 { 77 c har *pszOption, *pszMask;77 const char *pszOption, *pszMask; 78 78 char szAddress[16]; /* 4*3 + 3*1 + 1 */ 79 79 char szNetMask[16]; /* 4*3 + 3*1 + 1 */
Note:
See TracChangeset
for help on using the changeset viewer.