Changeset 745 for trunk/server/source3/modules/vfs_shadow_copy.c
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
source3/modules/vfs_shadow_copy.c (modified) (5 diffs)
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_shadow_copy.c
r414 r745 19 19 20 20 #include "includes.h" 21 22 21 23 22 24 /* … … 119 121 } 120 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 121 175 static SMB_STRUCT_DIRENT *shadow_copy_readdir(vfs_handle_struct *handle, 122 176 SMB_STRUCT_DIR *_dirp, … … 163 217 } 164 218 165 static int shadow_copy_get_shadow_copy_data(vfs_handle_struct *handle, files_struct *fsp, SHADOW_COPY_DATA *shadow_copy_data, bool labels) 219 static int shadow_copy_get_shadow_copy_data(vfs_handle_struct *handle, 220 files_struct *fsp, 221 struct shadow_copy_data *shadow_copy_data, 222 bool labels) 166 223 { 167 224 SMB_STRUCT_DIR *p = SMB_VFS_NEXT_OPENDIR(handle,fsp->conn->connectpath,NULL,0); … … 197 254 } 198 255 199 tlabels = (SHADOW_COPY_LABEL *)TALLOC_REALLOC(shadow_copy_data ->mem_ctx,256 tlabels = (SHADOW_COPY_LABEL *)TALLOC_REALLOC(shadow_copy_data, 200 257 shadow_copy_data->labels, 201 258 (shadow_copy_data->num_volumes+1)*sizeof(SHADOW_COPY_LABEL)); … … 217 274 static struct vfs_fn_pointers vfs_shadow_copy_fns = { 218 275 .opendir = shadow_copy_opendir, 276 219 277 .readdir = shadow_copy_readdir, 220 278 .seekdir = shadow_copy_seekdir,
Note:
See TracChangeset
for help on using the changeset viewer.
