Changeset 111
- Timestamp:
- 01/21/08 09:56:03 (11 months ago)
- Files:
-
- 1 modified
-
branches/samba-3.0/source/ndpsmb/ndpsmb.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/ndpsmb/ndpsmb.c
r110 r111 2017 2017 int APIENTRY NdpIOCTL (int type, HRESOURCE resource, char *path, int function, void *in, ULONG insize, PULONG poutlen) 2018 2018 { 2019 log("NdpIOCTL <%s> %d %d\n", path, function, ERROR_NOT_SUPPORTED); 2020 return ERROR_NOT_SUPPORTED; 2019 log("NdpIOCTL <%s> %d\n", path, function); 2020 2021 if (in && insize > 4096) 2022 { 2023 sprintf (in, "SAMBA IOCTL function = %d, parms [%s] insize = %d, *poutlen = %d", function, in, insize, *poutlen); 2024 *poutlen = insize; 2025 return NO_ERROR; 2026 } 2027 2028 return ERROR_NOT_SUPPORTED; 2021 2029 } 2022 2030
