1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

s3: Fix shadow copies after the change for in-path @GMT-

Signed-off-by: Christian Ambach <christian.ambach@de.ibm.com>
This commit is contained in:
Volker Lendecke 2009-11-12 12:30:58 +01:00
parent 68c6e07591
commit cc2aa855a3

View File

@ -664,9 +664,8 @@ static char *shadow_copy2_realpath(vfs_handle_struct *handle,
copy[gmt - fname + 1] = '\0';
DEBUG(10, ("calling NEXT_REALPATH with %s\n", copy));
result = SMB_VFS_NEXT_REALPATH(handle, copy, resolved_path);
TALLOC_FREE(copy);
return result;
SHADOW2_NEXT(REALPATH, (handle, name, resolved_path), char *,
NULL);
}
SHADOW2_NEXT(REALPATH, (handle, name, resolved_path), char *, NULL);
}