Changeset 20935 in vbox for trunk/src/VBox/Additions/linux/module
- Timestamp:
- Jun 25, 2009 12:52:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/module/vboxmod.c
r19111 r20935 962 962 963 963 /* Deal with variable size ioctls first. */ 964 #ifdef DEBUG /* Only allow random user applications to spam the log in965 * debug additions builds */966 964 if ( VBOXGUEST_IOCTL_STRIP_SIZE(VBOXGUEST_IOCTL_LOG(0)) 967 965 == VBOXGUEST_IOCTL_STRIP_SIZE(cmd)) … … 984 982 } 985 983 if (0 == rc) 986 {984 /* This only produces output in debug builds */ 987 985 Log(("%.*s", _IOC_SIZE(cmd), pszMessage)); 988 }989 986 if (NULL != pszMessage) 990 987 { … … 993 990 IOCTL_LOG_EXIT(arg); 994 991 } 995 else 996 #endif 997 if ( VBOXGUEST_IOCTL_STRIP_SIZE(VBOXGUEST_IOCTL_VMMREQUEST(0)) 992 else if ( VBOXGUEST_IOCTL_STRIP_SIZE(VBOXGUEST_IOCTL_VMMREQUEST(0)) 998 993 == VBOXGUEST_IOCTL_STRIP_SIZE(cmd)) 999 994 {
Note:
See TracChangeset
for help on using the changeset viewer.