Changeset 745 for trunk/server/source3/modules/vfs_catia.c
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source3/modules/vfs_catia.c
r414 r745 28 28 29 29 #include "includes.h" 30 #include "smbd/smbd.h" 30 31 31 32 #define GLOBAL_SNUM 0xFFFFFFF … … 236 237 237 238 if ((push_ucs2_talloc(ctx, &tmpbuf, name_in, 238 &converted_size)) == -1) {239 &converted_size)) == false) { 239 240 return map_nt_error_from_unix(errno); 240 241 } … … 253 254 254 255 if ((pull_ucs2_talloc(ctx, mapped_name, tmpbuf, 255 &converted_size)) == -1) {256 &converted_size)) == false) { 256 257 TALLOC_FREE(tmpbuf); 257 258 return map_nt_error_from_unix(errno); … … 635 636 636 637 static char * 637 catia_realpath(vfs_handle_struct *handle, const char *path, 638 char *resolved_path) 638 catia_realpath(vfs_handle_struct *handle, const char *path) 639 639 { 640 640 char *mapped_name = NULL; … … 649 649 } 650 650 651 ret = SMB_VFS_NEXT_REALPATH(handle, mapped_name , resolved_path);651 ret = SMB_VFS_NEXT_REALPATH(handle, mapped_name); 652 652 TALLOC_FREE(mapped_name); 653 653 … … 991 991 .rmdir = catia_rmdir, 992 992 .opendir = catia_opendir, 993 .open = catia_open,993 .open_fn = catia_open, 994 994 .rename = catia_rename, 995 995 .stat = catia_stat,
Note:
See TracChangeset
for help on using the changeset viewer.