summaryrefslogtreecommitdiff
path: root/source4/ntvfs
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-05-01 23:03:32 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:05:31 -0500
commit8bab9322825090952b25aa7e54c9bcd2f367de8d (patch)
tree95634bf39f0f2bbd1bdddb39f71c000e798a6ed3 /source4/ntvfs
parent46f627ea7afb0ad006efadf593bf202cea05194e (diff)
downloadsamba-8bab9322825090952b25aa7e54c9bcd2f367de8d.tar.gz
samba-8bab9322825090952b25aa7e54c9bcd2f367de8d.tar.bz2
samba-8bab9322825090952b25aa7e54c9bcd2f367de8d.zip
r15387: Fix installation of dcerpc headers, remove more instances of uint_t
(This used to be commit 9e9bfd04c6db013453b900e201df9c09e8777a22)
Diffstat (limited to 'source4/ntvfs')
-rw-r--r--source4/ntvfs/cifs_posix_cli/cvfs.h4
-rw-r--r--source4/ntvfs/ntvfs.h2
-rw-r--r--source4/ntvfs/simple/svfs.h4
3 files changed, 5 insertions, 5 deletions
diff --git a/source4/ntvfs/cifs_posix_cli/cvfs.h b/source4/ntvfs/cifs_posix_cli/cvfs.h
index 8e462d99f4..74e7b6c452 100644
--- a/source4/ntvfs/cifs_posix_cli/cvfs.h
+++ b/source4/ntvfs/cifs_posix_cli/cvfs.h
@@ -13,7 +13,7 @@ struct svfs_private {
};
struct svfs_dir {
- uint_t count;
+ unsigned int count;
char *unix_dir;
struct svfs_dirfile {
char *name;
@@ -30,6 +30,6 @@ struct svfs_file {
struct search_state {
struct search_state *next, *prev;
uint16_t handle;
- uint_t current_index;
+ unsigned int current_index;
struct svfs_dir *dir;
};
diff --git a/source4/ntvfs/ntvfs.h b/source4/ntvfs/ntvfs.h
index 3d12c5efc9..9069e6c2ac 100644
--- a/source4/ntvfs/ntvfs.h
+++ b/source4/ntvfs/ntvfs.h
@@ -223,7 +223,7 @@ struct ntvfs_context {
struct ntvfs_async_state {
struct ntvfs_async_state *prev, *next;
/* the async handling infos */
- uint_t state;
+ unsigned int state;
void *private_data;
void (*send_fn)(struct ntvfs_request *);
NTSTATUS status;
diff --git a/source4/ntvfs/simple/svfs.h b/source4/ntvfs/simple/svfs.h
index 8e462d99f4..74e7b6c452 100644
--- a/source4/ntvfs/simple/svfs.h
+++ b/source4/ntvfs/simple/svfs.h
@@ -13,7 +13,7 @@ struct svfs_private {
};
struct svfs_dir {
- uint_t count;
+ unsigned int count;
char *unix_dir;
struct svfs_dirfile {
char *name;
@@ -30,6 +30,6 @@ struct svfs_file {
struct search_state {
struct search_state *next, *prev;
uint16_t handle;
- uint_t current_index;
+ unsigned int current_index;
struct svfs_dir *dir;
};