summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_shadow_copy.c
diff options
context:
space:
mode:
authorRichard Sharpe <rsharpe@samba.org>2015-04-30 20:16:18 -0700
committerJeremy Allison <jra@samba.org>2015-05-01 21:52:25 +0200
commit4889cee60eb08a436bb28f1210e826b50ede91dd (patch)
tree40f1efc14b595af111abc826ea920c17803d1d25 /source3/modules/vfs_shadow_copy.c
parente049943eba470918d188ca7b959e36bfc2d746b1 (diff)
downloadsamba-4889cee60eb08a436bb28f1210e826b50ede91dd.tar.gz
Convert uint32/16/8 to _t for the last two include files in source3/include.
There are still many files to touch before we can remove the #define but this gets the last include files in source3/includes. Signed-off-by: Richard Sharpe <rsharpe@samba.org> Reviewed-by: Jeremy Allson <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Fri May 1 21:52:25 CEST 2015 on sn-devel-104
Diffstat (limited to 'source3/modules/vfs_shadow_copy.c')
-rw-r--r--source3/modules/vfs_shadow_copy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_shadow_copy.c b/source3/modules/vfs_shadow_copy.c
index 7b45c2e7aa6..5c05e254a03 100644
--- a/source3/modules/vfs_shadow_copy.c
+++ b/source3/modules/vfs_shadow_copy.c
@@ -73,7 +73,7 @@ static bool shadow_copy_match_name(const char *name)
return False;
}
-static DIR *shadow_copy_opendir(vfs_handle_struct *handle, const char *fname, const char *mask, uint32 attr)
+static DIR *shadow_copy_opendir(vfs_handle_struct *handle, const char *fname, const char *mask, uint32_t attr)
{
shadow_copy_Dir *dirp;
DIR *p = SMB_VFS_NEXT_OPENDIR(handle,fname,mask,attr);
@@ -120,7 +120,7 @@ static DIR *shadow_copy_opendir(vfs_handle_struct *handle, const char *fname, co
return((DIR *)dirp);
}
-static DIR *shadow_copy_fdopendir(vfs_handle_struct *handle, files_struct *fsp, const char *mask, uint32 attr)
+static DIR *shadow_copy_fdopendir(vfs_handle_struct *handle, files_struct *fsp, const char *mask, uint32_t attr)
{
shadow_copy_Dir *dirp;
DIR *p = SMB_VFS_NEXT_FDOPENDIR(handle,fsp,mask,attr);