Changeset 19339 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt
- Timestamp:
- May 4, 2009 5:32:54 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 46824
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/solaris/VBoxNetFlt-solaris.c
r19323 r19339 42 42 #include <iprt/crc32.h> 43 43 #include <iprt/err.h> 44 #define VBOX_WITH_NETFLT_SOLARIS_DLPISTYLE2 45 #ifdef VBOX_WITH_NETFLT_SOLARIS_DLPISTYLE2 46 # include <iprt/ctype.h> 47 #endif 44 48 45 49 #include <inet/ip.h> … … 98 102 #define DEVICE_DESC_DRV "VirtualBox NetDrv" 99 103 #define DEVICE_DESC_MOD "VirtualBox NetMod" 100 101 #ifdef VBOX_WITH_NETFLT_SOLARIS_DLPISTYLE2102 # define ISDIGIT(c) ((c) >= '0' && (c) <= '9')103 #endif104 104 105 105 /** @todo Remove the below hackery once done! */ … … 1698 1698 while (--pszEnd > pszDev) 1699 1699 { 1700 if (! ISDIGIT(*pszEnd))1700 if (!RT_C_IS_DIGIT(*pszEnd)) 1701 1701 break; 1702 1702 PPALen++;
Note:
See TracChangeset
for help on using the changeset viewer.