Changeset 111 for branches/samba-3.0/source/ndpsmb/ndpsmb.c
- Timestamp:
- Jan 21, 2008, 9:56:03 AM (18 years ago)
- File:
-
- 1 edited
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
Note:
See TracChangeset
for help on using the changeset viewer.