Change uint_t to unsigned int in source4
authorMatt Kraai <mkraai@beckman.com>
Tue, 5 Jan 2010 17:42:54 +0000 (09:42 -0800)
committerStefan Metzmacher <metze@samba.org>
Tue, 2 Feb 2010 06:18:18 +0000 (07:18 +0100)
Signed-off-by: Stefan Metzmacher <metze@samba.org>
61 files changed:
source4/client/client.c
source4/dsdb/common/util.c
source4/dsdb/samdb/ldb_modules/password_hash.c
source4/lib/messaging/messaging.c
source4/libcli/clifile.c
source4/libcli/raw/interfaces.h
source4/libcli/raw/libcliraw.h
source4/libcli/raw/raweas.c
source4/libcli/raw/rawfile.c
source4/libcli/raw/rawfileinfo.c
source4/libcli/raw/rawrequest.c
source4/libcli/raw/rawsearch.c
source4/libcli/raw/rawsetfileinfo.c
source4/libcli/raw/rawtrans.c
source4/libcli/raw/request.h
source4/libcli/raw/smb_signing.c
source4/libcli/security/privilege.c
source4/libcli/smb2/find.c
source4/libcli/smb2/smb2.h
source4/libcli/smb2/util.c
source4/librpc/rpc/dcerpc.c
source4/ntvfs/cifs_posix_cli/svfs_util.c
source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c
source4/ntvfs/ntvfs_generic.c
source4/ntvfs/posix/pvfs_fileinfo.c
source4/ntvfs/posix/pvfs_fsinfo.c
source4/ntvfs/posix/pvfs_qfileinfo.c
source4/ntvfs/posix/pvfs_resolve.c
source4/ntvfs/posix/pvfs_search.c
source4/ntvfs/posix/vfs_posix.h
source4/ntvfs/simple/svfs_util.c
source4/ntvfs/simple/vfs_simple.c
source4/ntvfs/smb2/vfs_smb2.c
source4/ntvfs/unixuid/vfs_unixuid.c
source4/smb_server/blob.c
source4/smb_server/smb/nttrans.c
source4/smb_server/smb/reply.c
source4/smb_server/smb/request.c
source4/smb_server/smb/trans2.c
source4/smb_server/smb2/tcon.c
source4/torture/basic/attr.c
source4/torture/basic/base.c
source4/torture/basic/denytest.c
source4/torture/basic/locking.c
source4/torture/basic/mangle_test.c
source4/torture/basic/misc.c
source4/torture/gentest.c
source4/torture/locktest.c
source4/torture/locktest2.c
source4/torture/nbench/nbio.c
source4/torture/raw/qfileinfo.c
source4/torture/raw/qfsinfo.c
source4/torture/raw/read.c
source4/torture/raw/samba3misc.c
source4/torture/raw/setfileinfo.c
source4/torture/raw/write.c
source4/torture/rpc/echo.c
source4/torture/rpc/lsa.c
source4/torture/rpc/session_key.c
source4/torture/smb2/dir.c
source4/torture/smb2/setinfo.c

index 71e666b74e99311097b28446a645fe03b9c706ed..1958dfc42fe00618903d9e2f51a285df1866a831 100644 (file)
@@ -72,9 +72,9 @@ struct smbclient_context {
 
 /* timing globals */
 static uint64_t get_total_size = 0;
-static uint_t get_total_time_ms = 0;
+static unsigned int get_total_time_ms = 0;
 static uint64_t put_total_size = 0;
-static uint_t put_total_time_ms = 0;
+static unsigned int put_total_time_ms = 0;
 
 /* Unfortunately, there is no way to pass the a context to the completion function as an argument */
 static struct smbclient_context *rl_ctx; 
index b57d383b2b8d18c3b28b6f839c725dabb13848d6..8de44726faaf694f1ad6e885d210a179df100122 100644 (file)
@@ -208,9 +208,9 @@ int samdb_search_count(struct ldb_context *sam_ldb,
 /*
   search the sam for a single integer attribute in exactly 1 record
 */
-uint_t samdb_search_uint(struct ldb_context *sam_ldb,
+unsigned int samdb_search_uint(struct ldb_context *sam_ldb,
                         TALLOC_CTX *mem_ctx,
-                        uint_t default_value,
+                        unsigned int default_value,
                         struct ldb_dn *basedn,
                         const char *attr_name,
                         const char *format, ...) _PRINTF_ATTRIBUTE(6,7)
@@ -314,7 +314,7 @@ int samdb_search_string_multiple(struct ldb_context *sam_ldb,
 /*
   pull a uint from a result set. 
 */
-uint_t samdb_result_uint(const struct ldb_message *msg, const char *attr, uint_t default_value)
+unsigned int samdb_result_uint(const struct ldb_message *msg, const char *attr, unsigned int default_value)
 {
        return ldb_msg_find_attr_as_uint(msg, attr, default_value);
 }
@@ -557,10 +557,10 @@ struct samr_Password *samdb_result_hash(TALLOC_CTX *mem_ctx, const struct ldb_me
 /*
   pull an array of samr_Password structutres from a result set. 
 */
-uint_t samdb_result_hashes(TALLOC_CTX *mem_ctx, const struct ldb_message *msg, 
+unsigned int samdb_result_hashes(TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
                           const char *attr, struct samr_Password **hashes)
 {
-       uint_t count, i;
+       unsigned int count, i;
        const struct ldb_val *val = ldb_msg_find_ldb_val(msg, attr);
 
        *hashes = NULL;
@@ -846,10 +846,10 @@ int samdb_msg_add_int(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct l
 }
 
 /*
-  add a uint_t element to a message
+  add a unsigned int element to a message
 */
 int samdb_msg_add_uint(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
-                      const char *attr_name, uint_t v)
+                      const char *attr_name, unsigned int v)
 {
        return samdb_msg_add_int(sam_ldb, mem_ctx, msg, attr_name, (int)v);
 }
@@ -892,7 +892,7 @@ int samdb_msg_add_hash(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct
   add a samr_Password array to a message
 */
 int samdb_msg_add_hashes(TALLOC_CTX *mem_ctx, struct ldb_message *msg,
-                        const char *attr_name, struct samr_Password *hashes, uint_t count)
+                        const char *attr_name, struct samr_Password *hashes, unsigned int count)
 {
        struct ldb_val val;
        int i;
index df4a3442987c9c9c0cbf356032573713929d3457..cd588211da11d1f7ec998331e15cfbce1e4d6e4a 100644 (file)
@@ -84,8 +84,8 @@ struct ph_context {
 
 struct domain_data {
        bool store_cleartext;
-       uint_t pwdProperties;
-       uint_t pwdHistoryLength;
+       unsigned int pwdProperties;
+       unsigned int pwdHistoryLength;
        const char *netbios_domain;
        const char *dns_domain;
        const char *realm;
index c12945b622edd9abaefa30c0266a2315bd866344..c507eb63b1646b25bc0afe87111b03fe2c1f07fd 100644 (file)
@@ -98,7 +98,7 @@ static void ping_message(struct messaging_context *msg, void *private_data,
                         uint32_t msg_type, struct server_id src, DATA_BLOB *data)
 {
        DEBUG(1,("INFO: Received PING message from server %u.%u [%.*s]\n",
-                (uint_t)src.node, (uint_t)src.id, (int)data->length, 
+                (unsigned int)src.node, (unsigned int)src.id, (int)data->length,
                 data->data?(const char *)data->data:""));
        messaging_send(msg, src, MSG_PONG, data);
 }
index b76bdc015f70dd41ee6f32be391b6c8a61c1a073..f521b5f4209912b2e8bd12c4d8802461c88aec23 100644 (file)
@@ -55,7 +55,7 @@ static NTSTATUS smbcli_link_internal(struct smbcli_tree *tree,
 ****************************************************************************/
 uint32_t unix_perms_to_wire(mode_t perms)
 {
-        uint_t ret = 0;
+        unsigned int ret = 0;
 
         ret |= ((perms & S_IXOTH) ?  UNIX_X_OTH : 0);
         ret |= ((perms & S_IWOTH) ?  UNIX_W_OTH : 0);
@@ -271,8 +271,8 @@ int smbcli_open(struct smbcli_tree *tree, const char *fname, int flags,
             int share_mode)
 {
        union smb_open open_parms;
-       uint_t openfn=0;
-       uint_t accessmode=0;
+       unsigned int openfn=0;
+       unsigned int accessmode=0;
        TALLOC_CTX *mem_ctx;
        NTSTATUS status;
 
index 4ddfc56c2fcb6fc553ed668bd94e7e654420d58b..f159074783396b6ce71c1d797c4dec187b2b6c47 100644 (file)
@@ -185,7 +185,7 @@ union smb_mkdir {
                enum smb_mkdir_level level;
                struct {
                        const char *path;
-                       uint_t num_eas;
+                       unsigned int num_eas;
                        struct ea_struct *eas;                  
                } in;
        } t2mkdir;
@@ -488,7 +488,7 @@ union smb_fileinfo {
                struct {
                        uint32_t attrib;
                        uint32_t ea_size;
-                       uint_t num_eas;
+                       unsigned int num_eas;
                        struct ea_struct {
                                uint8_t flags;
                                struct smb_wire_string name;
@@ -516,7 +516,7 @@ union smb_fileinfo {
                        uint32_t mode;
                        uint32_t alignment_requirement;
                        uint32_t reparse_tag;
-                       uint_t num_streams;
+                       unsigned int num_streams;
                        struct stream_struct {
                                uint64_t size;
                                uint64_t alloc_size;
@@ -578,14 +578,14 @@ union smb_fileinfo {
                enum smb_fileinfo_level level;
                struct {
                        union smb_handle_or_path file;
-                       uint_t num_names;
+                       unsigned int num_names;
                        struct ea_name {
                                struct smb_wire_string name;
                        } *ea_names;    
                } in;   
 
                struct smb_ea_list {
-                       uint_t num_eas;
+                       unsigned int num_eas;
                        struct ea_struct *eas;
                } out;
        } ea_list;
@@ -732,7 +732,7 @@ union smb_fileinfo {
                        union smb_handle_or_path file;
                } in;
                struct stream_information {
-                       uint_t num_streams;
+                       unsigned int num_streams;
                        struct stream_struct *streams;
                } out;
        } stream_info;
@@ -993,7 +993,7 @@ union smb_setfileinfo {
                enum smb_setfileinfo_level level;
                struct {
                        union smb_handle_or_path file;
-                       uint_t num_eas;
+                       unsigned int num_eas;
                        struct ea_struct *eas;                  
                } in;
        } ea_set;
@@ -1474,7 +1474,7 @@ union smb_open {
                        uint32_t size;
                        uint32_t timeout;
                        const char *fname;
-                       uint_t num_eas;
+                       unsigned int num_eas;
                        struct ea_struct *eas;                  
                } in;
                struct {
@@ -2484,7 +2484,7 @@ union smb_search_first {
                        const char *pattern;
 
                        /* the ea names are only used for RAW_SEARCH_EA_LIST */
-                       uint_t num_names;
+                       unsigned int num_names;
                        struct ea_name *ea_names;
                } in;
                struct {
@@ -2568,7 +2568,7 @@ union smb_search_next {
                        const char *last_name;
 
                        /* the ea names are only used for RAW_SEARCH_EA_LIST */
-                       uint_t num_names;
+                       unsigned int num_names;
                        struct ea_name *ea_names;
                } in;
                struct {
index 69de33ce713d2a12992e84acbcda25ec6b34e68d..a278597bafe67bafcfbfdf79825bca3828fff512 100644 (file)
@@ -63,9 +63,9 @@ struct smbcli_negotiate {
        
        int server_zone;
        time_t server_time;
-       uint_t readbraw_supported:1;
-       uint_t writebraw_supported:1;
-       uint_t lockread_supported:1;
+       unsigned int readbraw_supported:1;
+       unsigned int writebraw_supported:1;
+       unsigned int lockread_supported:1;
 
        char *server_domain;
 };
@@ -93,11 +93,11 @@ struct smbcli_socket {
   client library
 */
 struct smbcli_options {
-       uint_t use_oplocks:1;
-       uint_t use_level2_oplocks:1;
-       uint_t use_spnego:1;
-       uint_t unicode:1;
-       uint_t ntstatus_support:1;
+       unsigned int use_oplocks:1;
+       unsigned int use_level2_oplocks:1;
+       unsigned int use_spnego:1;
+       unsigned int unicode:1;
+       unsigned int ntstatus_support:1;
        int max_protocol;
        uint32_t max_xmit;
        uint16_t max_mux;
@@ -122,7 +122,7 @@ struct smbcli_transport {
 
        /* is a readbraw pending? we need to handle that case
           specially on receiving packets */
-       uint_t readbraw_pending:1;
+       unsigned int readbraw_pending:1;
        
        /* an idle function - if this is defined then it will be
           called once every period microseconds while we are waiting
@@ -130,7 +130,7 @@ struct smbcli_transport {
        struct {
                void (*func)(struct smbcli_transport *, void *);
                void *private_data;
-               uint_t period;
+               unsigned int period;
        } idle;
 
        /* the error fields from the last message */
@@ -143,7 +143,7 @@ struct smbcli_transport {
                              SOCKET_READ_ERROR,
                              SOCKET_WRITE_ERROR,
                              SOCKET_READ_BAD_SIG} socket_error;
-                       uint_t nbt_error;
+                       unsigned int nbt_error;
                } e;
        } error;
 
@@ -193,9 +193,9 @@ struct smbcli_session {
        struct gensec_security *gensec;
 
        struct smbcli_session_options {
-               uint_t lanman_auth:1;
-               uint_t ntlmv2_auth:1;
-               uint_t plaintext_auth:1;
+               unsigned int lanman_auth:1;
+               unsigned int ntlmv2_auth:1;
+               unsigned int plaintext_auth:1;
        } options;
 
        const char *os;
@@ -256,18 +256,18 @@ struct smbcli_request {
        NTSTATUS status;
        
        /* the sequence number of this packet - used for signing */
-       uint_t seq_num;
+       unsigned int seq_num;
 
        /* list of ntcancel request for this requests */
        struct smbcli_request *ntcancel;
 
        /* set if this is a one-way request, meaning we are not
           expecting a reply from the server. */
-       uint_t one_way_request:1;
+       unsigned int one_way_request:1;
 
        /* set this when the request should only increment the signing
           counter by one */
-       uint_t sign_single_increment:1;
+       unsigned int sign_single_increment:1;
 
        /* the caller wants to do the signing check */
        bool sign_caller_checks;
index ae3d4ce50a8b2f1d52ba4a4c8f46a3360454b464..5f06e7001d8517fea8dc6d248e36fb7149564e46 100644 (file)
@@ -26,9 +26,9 @@
   This assumes the names are strict ascii, which should be a
   reasonable assumption
 */
-size_t ea_list_size(uint_t num_eas, struct ea_struct *eas)
+size_t ea_list_size(unsigned int num_eas, struct ea_struct *eas)
 {
-       uint_t total = 4;
+       unsigned int total = 4;
        int i;
        for (i=0;i<num_eas;i++) {
                total += 4 + strlen(eas[i].name.s)+1 + eas[i].value.length;
@@ -39,9 +39,9 @@ size_t ea_list_size(uint_t num_eas, struct ea_struct *eas)
 /*
   work out how many bytes on the wire a ea name list will consume. 
 */
-static uint_t ea_name_list_size(uint_t num_names, struct ea_name *eas)
+static unsigned int ea_name_list_size(unsigned int num_names, struct ea_name *eas)
 {
-       uint_t total = 4;
+       unsigned int total = 4;
        int i;
        for (i=0;i<num_names;i++) {
                total += 1 + strlen(eas[i].name.s) + 1;
@@ -54,12 +54,12 @@ static uint_t ea_name_list_size(uint_t num_names, struct ea_name *eas)
   This assumes the names are strict ascii, which should be a
   reasonable assumption
 */
-size_t ea_list_size_chained(uint_t num_eas, struct ea_struct *eas, unsigned alignment)
+size_t ea_list_size_chained(unsigned int num_eas, struct ea_struct *eas, unsigned alignment)
 {
-       uint_t total = 0;
+       unsigned int total = 0;
        int i;
        for (i=0;i<num_eas;i++) {
-               uint_t len = 8 + strlen(eas[i].name.s)+1 + eas[i].value.length;
+               unsigned int len = 8 + strlen(eas[i].name.s)+1 + eas[i].value.length;
                len = (len + (alignment-1)) & ~(alignment-1);
                total += len;
        }
@@ -70,7 +70,7 @@ size_t ea_list_size_chained(uint_t num_eas, struct ea_struct *eas, unsigned alig
   put a ea_list into a pre-allocated buffer - buffer must be at least
   of size ea_list_size()
 */
-void ea_put_list(uint8_t *data, uint_t num_eas, struct ea_struct *eas)
+void ea_put_list(uint8_t *data, unsigned int num_eas, struct ea_struct *eas)
 {
        int i;
        uint32_t ea_size;
@@ -81,7 +81,7 @@ void ea_put_list(uint8_t *data, uint_t num_eas, struct ea_struct *eas)
        data += 4;
 
        for (i=0;i<num_eas;i++) {
-               uint_t nlen = strlen(eas[i].name.s);
+               unsigned int nlen = strlen(eas[i].name.s);
                SCVAL(data, 0, eas[i].flags);
                SCVAL(data, 1, nlen);
                SSVAL(data, 2, eas[i].value.length);
@@ -96,15 +96,15 @@ void ea_put_list(uint8_t *data, uint_t num_eas, struct ea_struct *eas)
   put a chained ea_list into a pre-allocated buffer - buffer must be
   at least of size ea_list_size()
 */
-void ea_put_list_chained(uint8_t *data, uint_t num_eas, struct ea_struct *eas,
+void ea_put_list_chained(uint8_t *data, unsigned int num_eas, struct ea_struct *eas,
                         unsigned alignment)
 {
        int i;
 
        for (i=0;i<num_eas;i++) {
-               uint_t nlen = strlen(eas[i].name.s);
+               unsigned int nlen = strlen(eas[i].name.s);
                uint32_t len = 8+nlen+1+eas[i].value.length;
-               uint_t pad = ((len + (alignment-1)) & ~(alignment-1)) - len;
+               unsigned int pad = ((len + (alignment-1)) & ~(alignment-1)) - len;
                if (i == num_eas-1) {
                        SIVAL(data, 0, 0);
                } else {
@@ -124,7 +124,7 @@ void ea_put_list_chained(uint8_t *data, uint_t num_eas, struct ea_struct *eas,
 /*
   pull a ea_struct from a buffer. Return the number of bytes consumed
 */
-uint_t ea_pull_struct(const DATA_BLOB *blob, 
+unsigned int ea_pull_struct(const DATA_BLOB *blob,
                      TALLOC_CTX *mem_ctx,
                      struct ea_struct *ea)
 {
@@ -164,7 +164,7 @@ uint_t ea_pull_struct(const DATA_BLOB *blob,
 */
 NTSTATUS ea_pull_list(const DATA_BLOB *blob, 
                      TALLOC_CTX *mem_ctx,
-                     uint_t *num_eas, struct ea_struct **eas)
+                     unsigned int *num_eas, struct ea_struct **eas)
 {
        int n;
        uint32_t ea_size, ofs;
@@ -184,7 +184,7 @@ NTSTATUS ea_pull_list(const DATA_BLOB *blob,
        *eas = NULL;
 
        while (ofs < ea_size) {
-               uint_t len;
+               unsigned int len;
                DATA_BLOB blob2;
 
                blob2.data = blob->data + ofs;
@@ -213,7 +213,7 @@ NTSTATUS ea_pull_list(const DATA_BLOB *blob,
 */
 NTSTATUS ea_pull_list_chained(const DATA_BLOB *blob, 
                              TALLOC_CTX *mem_ctx,
-                             uint_t *num_eas, struct ea_struct **eas)
+                             unsigned int *num_eas, struct ea_struct **eas)
 {
        int n;
        uint32_t ofs;
@@ -228,7 +228,7 @@ NTSTATUS ea_pull_list_chained(const DATA_BLOB *blob,
        *eas = NULL;
 
        while (ofs < blob->length) {
-               uint_t len;
+               unsigned int len;
                DATA_BLOB blob2;
                uint32_t next_ofs = IVAL(blob->data, ofs);
 
@@ -261,7 +261,7 @@ NTSTATUS ea_pull_list_chained(const DATA_BLOB *blob,
 /*
   pull a ea_name from a buffer. Return the number of bytes consumed
 */
-static uint_t ea_pull_name(const DATA_BLOB *blob, 
+static unsigned int ea_pull_name(const DATA_BLOB *blob,
                           TALLOC_CTX *mem_ctx,
                           struct ea_name *ea)
 {
@@ -289,7 +289,7 @@ static uint_t ea_pull_name(const DATA_BLOB *blob,
 */
 NTSTATUS ea_pull_name_list(const DATA_BLOB *blob, 
                           TALLOC_CTX *mem_ctx,
-                          uint_t *num_names, struct ea_name **ea_names)
+                          unsigned int *num_names, struct ea_name **ea_names)
 {
        int n;
        uint32_t ea_size, ofs;
@@ -309,7 +309,7 @@ NTSTATUS ea_pull_name_list(const DATA_BLOB *blob,
        *ea_names = NULL;
 
        while (ofs < ea_size) {
-               uint_t len;
+               unsigned int len;
                DATA_BLOB blob2;
 
                blob2.data = blob->data + ofs;
@@ -337,7 +337,7 @@ NTSTATUS ea_pull_name_list(const DATA_BLOB *blob,
   put a ea_name list into a data blob
 */
 bool ea_push_name_list(TALLOC_CTX *mem_ctx,
-                      DATA_BLOB *data, uint_t num_names, struct ea_name *eas)
+                      DATA_BLOB *data, unsigned int num_names, struct ea_name *eas)
 {
        int i;
        uint32_t ea_size;
@@ -354,7 +354,7 @@ bool ea_push_name_list(TALLOC_CTX *mem_ctx,
        off = 4;
 
        for (i=0;i<num_names;i++) {
-               uint_t nlen = strlen(eas[i].name.s);
+               unsigned int nlen = strlen(eas[i].name.s);
                SCVAL(data->data, off, nlen);
                memcpy(data->data+off+1, eas[i].name.s, nlen+1);
                off += 1+nlen+1;
index b6849fef618be43f86b3c587c70853174d57927e..1509c83e00d55a8749c0e59c913ff7e694052aeb 100644 (file)
@@ -918,8 +918,8 @@ struct smbcli_request *smb_raw_lock_send(struct smbcli_tree *tree, union smb_loc
                
        case RAW_LOCK_LOCKX: {
                struct smb_lock_entry *lockp;
-               uint_t lck_size = (parms->lockx.in.mode & LOCKING_ANDX_LARGE_FILES)? 20 : 10;
-               uint_t lock_count = parms->lockx.in.ulock_cnt + parms->lockx.in.lock_cnt;
+               unsigned int lck_size = (parms->lockx.in.mode & LOCKING_ANDX_LARGE_FILES)? 20 : 10;
+               unsigned int lock_count = parms->lockx.in.ulock_cnt + parms->lockx.in.lock_cnt;
                int i;
 
                SETUP_REQUEST(SMBlockingX, 8, lck_size * lock_count);
index 09ecb40002f3ae44db34fe41220f4bfacaf1ad00..f81a8071d1581b6c328194695f5fa7feeb997cc8 100644 (file)
@@ -47,7 +47,7 @@ NTSTATUS smbcli_parse_stream_info(DATA_BLOB blob, TALLOC_CTX *mem_ctx,
        io->streams = NULL;
 
        while (blob.length - ofs >= 24) {
-               uint_t n = io->num_streams;
+               unsigned int n = io->num_streams;
                uint32_t nlen, len;
                bool ret;
                void *vstr;
index 52b9bf74bfca74e38c876e10ad7b18e00c12baab..eb39fffeda64621b4e5f28bd634b8a0f20f73e17 100644 (file)
@@ -119,7 +119,7 @@ struct smbcli_request *smbcli_request_setup_nonsmb(struct smbcli_transport *tran
   setup a SMB packet at transport level
 */
 struct smbcli_request *smbcli_request_setup_transport(struct smbcli_transport *transport,
-                                                     uint8_t command, uint_t wct, uint_t buflen)
+                                                     uint8_t command, unsigned int wct, unsigned int buflen)
 {
        struct smbcli_request *req;
 
@@ -167,7 +167,7 @@ struct smbcli_request *smbcli_request_setup_transport(struct smbcli_transport *t
   way. This interface is used before a session is setup.
 */
 struct smbcli_request *smbcli_request_setup_session(struct smbcli_session *session,
-                                                   uint8_t command, uint_t wct, size_t buflen)
+                                                   uint8_t command, unsigned int wct, size_t buflen)
 {
        struct smbcli_request *req;
 
@@ -190,7 +190,7 @@ struct smbcli_request *smbcli_request_setup_session(struct smbcli_session *sessi
 */
 struct smbcli_request *smbcli_request_setup(struct smbcli_tree *tree,
                                            uint8_t command, 
-                                           uint_t wct, uint_t buflen)
+                                           unsigned int wct, unsigned int buflen)
 {
        struct smbcli_request *req;
 
@@ -211,7 +211,7 @@ struct smbcli_request *smbcli_request_setup(struct smbcli_tree *tree,
   To cope with this req->out.ptr is supplied. This will be updated to
   point at the same offset into the packet as before this call
 */
-static void smbcli_req_grow_allocation(struct smbcli_request *req, uint_t new_size)
+static void smbcli_req_grow_allocation(struct smbcli_request *req, unsigned int new_size)
 {
        int delta;
        uint8_t *buf2;
@@ -252,7 +252,7 @@ static void smbcli_req_grow_allocation(struct smbcli_request *req, uint_t new_si
   To cope with this req->out.ptr is supplied. This will be updated to
   point at the same offset into the packet as before this call
 */
-static void smbcli_req_grow_data(struct smbcli_request *req, uint_t new_size)
+static void smbcli_req_grow_data(struct smbcli_request *req, unsigned int new_size)
 {
        int delta;
 
@@ -274,9 +274,9 @@ static void smbcli_req_grow_data(struct smbcli_request *req, uint_t new_size)
 */
 NTSTATUS smbcli_chained_request_setup(struct smbcli_request *req,
                                      uint8_t command, 
-                                     uint_t wct, size_t buflen)
+                                     unsigned int wct, size_t buflen)
 {
-       uint_t new_size = 1 + (wct*2) + 2 + buflen;
+       unsigned int new_size = 1 + (wct*2) + 2 + buflen;
 
        SSVAL(req->out.vwv, VWV(0), command);
        SSVAL(req->out.vwv, VWV(1), req->out.size - NBT_HDR_SIZE);
@@ -371,7 +371,7 @@ bool smbcli_request_receive(struct smbcli_request *req)
   handle oplock break requests from the server - return true if the request was
   an oplock break
 */
-bool smbcli_handle_oplock_break(struct smbcli_transport *transport, uint_t len, const uint8_t *hdr, const uint8_t *vwv)
+bool smbcli_handle_oplock_break(struct smbcli_transport *transport, unsigned int len, const uint8_t *hdr, const uint8_t *vwv)
 {
        /* we must be very fussy about what we consider an oplock break to avoid
           matching readbraw replies */
@@ -416,7 +416,7 @@ bool smbcli_request_is_error(struct smbcli_request *req)
 
   return the number of bytes added to the packet
 */
-size_t smbcli_req_append_string(struct smbcli_request *req, const char *str, uint_t flags)
+size_t smbcli_req_append_string(struct smbcli_request *req, const char *str, unsigned int flags)
 {
        size_t len;
 
@@ -448,7 +448,7 @@ size_t smbcli_req_append_string(struct smbcli_request *req, const char *str, uin
  this is used in places where the non-terminated string byte length is
  placed in the packet as a separate field  
 */
-size_t smbcli_req_append_string_len(struct smbcli_request *req, const char *str, uint_t flags, int *len)
+size_t smbcli_req_append_string_len(struct smbcli_request *req, const char *str, unsigned int flags, int *len)
 {
        int diff = 0;
        size_t ret;
@@ -489,7 +489,7 @@ size_t smbcli_req_append_string_len(struct smbcli_request *req, const char *str,
 
   if dest_len is -1 then no limit applies
 */
-size_t smbcli_req_append_ascii4(struct smbcli_request *req, const char *str, uint_t flags)
+size_t smbcli_req_append_ascii4(struct smbcli_request *req, const char *str, unsigned int flags)
 {
        size_t size;
        smbcli_req_append_bytes(req, (const uint8_t *)"\4", 1);
@@ -555,7 +555,7 @@ size_t smbcli_req_append_var_block(struct smbcli_request *req, const uint8_t *by
   of bytes consumed in the packet is returned
 */
 static size_t smbcli_req_pull_ucs2(struct request_bufinfo *bufinfo, TALLOC_CTX *mem_ctx,
-                               char **dest, const uint8_t *src, int byte_len, uint_t flags)
+                               char **dest, const uint8_t *src, int byte_len, unsigned int flags)
 {
        int src_len, src_len2, alignment=0;
        bool ret;
@@ -609,7 +609,7 @@ static size_t smbcli_req_pull_ucs2(struct request_bufinfo *bufinfo, TALLOC_CTX *
   of bytes consumed in the packet is returned
 */
 size_t smbcli_req_pull_ascii(struct request_bufinfo *bufinfo, TALLOC_CTX *mem_ctx,
-                            char **dest, const uint8_t *src, int byte_len, uint_t flags)
+                            char **dest, const uint8_t *src, int byte_len, unsigned int flags)
 {
        int src_len, src_len2;
        bool ret;
@@ -653,7 +653,7 @@ size_t smbcli_req_pull_ascii(struct request_bufinfo *bufinfo, TALLOC_CTX *mem_ct
   of bytes consumed in the packet is returned
 */
 size_t smbcli_req_pull_string(struct request_bufinfo *bufinfo, TALLOC_CTX *mem_ctx, 
-                          char **dest, const uint8_t *src, int byte_len, uint_t flags)
+                          char **dest, const uint8_t *src, int byte_len, unsigned int flags)
 {
        if (!(flags & STR_ASCII) && 
            (((flags & STR_UNICODE) || (bufinfo->flags & BUFINFO_FLAG_UNICODE)))) {
@@ -751,7 +751,7 @@ NTTIME smbcli_pull_nttime(void *base, uint16_t offset)
 */
 size_t smbcli_blob_pull_ucs2(TALLOC_CTX* mem_ctx,
                             const DATA_BLOB *blob, const char **dest, 
-                            const uint8_t *src, int byte_len, uint_t flags)
+                            const uint8_t *src, int byte_len, unsigned int flags)
 {
        int src_len, src_len2, alignment=0;
        size_t ret_size;
@@ -808,7 +808,7 @@ size_t smbcli_blob_pull_ucs2(TALLOC_CTX* mem_ctx,
 */
 static size_t smbcli_blob_pull_ascii(TALLOC_CTX *mem_ctx,
                                     const DATA_BLOB *blob, const char **dest, 
-                                    const uint8_t *src, int byte_len, uint_t flags)
+                                    const uint8_t *src, int byte_len, unsigned int flags)
 {
        int src_len, src_len2;
        size_t ret_size;
@@ -860,7 +860,7 @@ size_t smbcli_blob_pull_string(struct smbcli_session *session,
                               const DATA_BLOB *blob, 
                               struct smb_wire_string *dest, 
                               uint16_t len_offset, uint16_t str_offset, 
-                              uint_t flags)
+                              unsigned int flags)
 {
        int extra;
        dest->s = NULL;
@@ -927,7 +927,7 @@ size_t smbcli_blob_pull_unix_string(struct smbcli_session *session,
                            DATA_BLOB *blob, 
                            const char **dest, 
                            uint16_t str_offset, 
-                           uint_t flags)
+                           unsigned int flags)
 {
        int extra = 0;
        *dest = NULL;
@@ -961,7 +961,7 @@ size_t smbcli_blob_pull_unix_string(struct smbcli_session *session,
 */
 size_t smbcli_blob_append_string(struct smbcli_session *session,
                              TALLOC_CTX *mem_ctx, DATA_BLOB *blob, 
-                             const char *str, uint_t flags)
+                             const char *str, unsigned int flags)
 {
        size_t max_len;
        int len;
index 9c90d45492eaaf631dbb3f263e7aa436cf4fc8e5..0705faa4e3ed3d43df18fad6e494f816ab3ef74f 100644 (file)
@@ -333,10 +333,10 @@ NTSTATUS smb_raw_search_common(TALLOC_CTX *mem_ctx,
                               enum smb_search_data_level level,
                               const DATA_BLOB *blob,
                               union smb_search_data *data,
-                              uint_t *next_ofs,
-                              uint_t str_flags)
+                              unsigned int *next_ofs,
+                              unsigned int str_flags)
 {
-       uint_t len, blen;
+       unsigned int len, blen;
 
        if (blob->length < 4) {
                return NT_STATUS_INFO_LENGTH_MISMATCH;
@@ -487,7 +487,7 @@ static int parse_trans2_search(struct smbcli_tree *tree,
                               DATA_BLOB *blob,
                               union smb_search_data *data)
 {
-       uint_t len, ofs;
+       unsigned int len, ofs;
        uint32_t ea_size;
        DATA_BLOB eablob;
        NTSTATUS status;
@@ -656,7 +656,7 @@ static int parse_trans2_search(struct smbcli_tree *tree,
                case RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO:
                case RAW_SEARCH_DATA_ID_FULL_DIRECTORY_INFO:
                case RAW_SEARCH_DATA_ID_BOTH_DIRECTORY_INFO: {
-                       uint_t str_flags = STR_UNICODE;
+                       unsigned int str_flags = STR_UNICODE;
                        if (!(tree->session->transport->negotiate.capabilities & CAP_UNICODE)) {
                                str_flags = STR_ASCII;
                        }
@@ -694,7 +694,7 @@ static NTSTATUS smb_raw_t2search_backend(struct smbcli_tree *tree,
 
        for (i=0; i < count; i++) {
                union smb_search_data search_data;
-               uint_t len;
+               unsigned int len;
 
                len = parse_trans2_search(tree, mem_ctx, level, flags, &blob2, &search_data);
                if (len == -1) {
index f7dfb933f190760f27ee3fe445c77ffc2cc75aaf..892d5e483b02eb4a5681e3cc79992868e6a8f514 100644 (file)
@@ -33,7 +33,7 @@ bool smb_raw_setfileinfo_passthru(TALLOC_CTX *mem_ctx,
                                  union smb_setfileinfo *parms, 
                                  DATA_BLOB *blob)
 {      
-       uint_t len;
+       unsigned int len;
 
 #define NEED_BLOB(n) do { \
          *blob = data_blob_talloc(mem_ctx, NULL, n); \
index d68df56705896889274c12fb62d540c734f8c268..dd017715c7e69fc24539069451e10eb3cf178765 100644 (file)
@@ -29,7 +29,7 @@
   check out of bounds for incoming data
 */
 static bool raw_trans_oob(struct smbcli_request *req,
-                         uint_t offset, uint_t count)
+                         unsigned int offset, unsigned int count)
 {
        uint8_t *ptr;
 
index 2a572e58eeff050b3d002a91b0cfecc3b774b1ae..dd38b31291cbc5c4b549ed30b6eaaa7c43901f6a 100644 (file)
@@ -58,7 +58,7 @@ struct smb_request_buffer {
        /* the command words and command word count. vwv points
           into the raw buffer */
        uint8_t *vwv;
-       uint_t wct;
+       unsigned int wct;
        
        /* the data buffer and size. data points into the raw buffer */
        uint8_t *data;
index 84e0ad62a4067497e44f74aa6d1cb6328b10e69b..d6d53db32972d139e3f1001d13749776b195e900 100644 (file)
@@ -132,7 +132,7 @@ void sign_outgoing_message(struct smb_request_buffer *out, DATA_BLOB *mac_key, u
        Uncomment this to test if the remote server actually verifies signitures...*/
 }
 
-bool check_signed_incoming_message(struct smb_request_buffer *in, DATA_BLOB *mac_key, uint_t seq_num) 
+bool check_signed_incoming_message(struct smb_request_buffer *in, DATA_BLOB *mac_key, unsigned int seq_num)
 {
        bool good;
        uint8_t calc_md5_mac[16];
index 2ebc1dc915a2662b74cf30f6e67690272151311a..82638306543762ee6d9728e9aca8bec87e17d3e7 100644 (file)
@@ -231,7 +231,7 @@ void security_token_debug_privileges(int dbg_lev, const struct security_token *t
 
        if (token->privilege_mask) {
                int i = 0;
-               uint_t privilege;
+               unsigned int privilege;
 
                for (privilege = 1; privilege <= 64; privilege++) {
                        uint64_t mask = sec_privilege_mask(privilege);
index 8ebfd81bcd1d18580aaddbcd13be8c7b9fa0a1c1..2fb52a9f9fe5d31090e15bf56141b427eab696fc 100644 (file)
@@ -95,14 +95,14 @@ NTSTATUS smb2_find(struct smb2_tree *tree, TALLOC_CTX *mem_ctx,
   smb_search_data structures
 */
 NTSTATUS smb2_find_level_recv(struct smb2_request *req, TALLOC_CTX *mem_ctx,
-                             uint8_t level, uint_t *count,
+                             uint8_t level, unsigned int *count,
                              union smb_search_data **io)
 {
        struct smb2_find f;
        NTSTATUS status;
        DATA_BLOB b;
        enum smb_search_data_level smb_level;
-       uint_t next_ofs=0;
+       unsigned int next_ofs=0;
 
        switch (level) {
        case SMB2_FIND_DIRECTORY_INFO:
@@ -171,7 +171,7 @@ NTSTATUS smb2_find_level_recv(struct smb2_request *req, TALLOC_CTX *mem_ctx,
 */
 NTSTATUS smb2_find_level(struct smb2_tree *tree, TALLOC_CTX *mem_ctx,
                         struct smb2_find *f, 
-                        uint_t *count, union smb_search_data **io)
+                        unsigned int *count, union smb_search_data **io)
 {
        struct smb2_request *req;
 
index ba626fbe06eecb3771028a92edd2965b3c6ee6e6..26b9bcb2a10cc16f81c1992f4986a5f8a2c19b3a 100644 (file)
@@ -103,7 +103,7 @@ struct smb2_transport {
        struct {
                void (*func)(struct smb2_transport *, void *);
                void *private_data;
-               uint_t period;
+               unsigned int period;
        } idle;
 
        struct {
index 992bd5c1d96b774436edd8c0629911c1bf79a9c4..8b4a86f332830b665d602e0fd1db683c5bd68232 100644 (file)
@@ -109,7 +109,7 @@ int smb2_deltree(struct smb2_tree *tree, const char *dname)
 {
        NTSTATUS status;
        uint32_t total_deleted = 0;
-       uint_t count, i;
+       unsigned int count, i;
        union smb_search_data *list;
        TALLOC_CTX *tmp_ctx = talloc_new(tree);
        struct smb2_find f;
index 91b1e0057097d8d21ff004ad9a0fc03a8d80a5a4..c006693bab6404c1e65c0fda76f625d4754359f4 100644 (file)
@@ -831,7 +831,7 @@ static void dcerpc_request_recv_data(struct dcerpc_connection *c,
                                     DATA_BLOB *raw_packet, struct ncacn_packet *pkt)
 {
        struct rpc_request *req;
-       uint_t length;
+       unsigned int length;
        NTSTATUS status = NT_STATUS_OK;
 
        /*
@@ -1442,7 +1442,7 @@ _PUBLIC_ NTSTATUS dcerpc_ndr_request_recv(struct rpc_request *req)
        NTSTATUS status;
        DATA_BLOB response;
        struct ndr_pull *pull;
-       uint_t flags;
+       unsigned int flags;
        TALLOC_CTX *mem_ctx = req->ndr.mem_ctx;
        void *r = req->ndr.struct_ptr;
        uint32_t opnum = req->ndr.opnum;
index 03a46205a7e78360f8a916b8bddd6d6e2bb55757..d8a7909390c71142cb4a0c5c7581adfec6b0ce36 100644 (file)
@@ -66,7 +66,7 @@ struct cifspsx_dir *cifspsx_list_unix(TALLOC_CTX *mem_ctx, struct ntvfs_request
        struct cifspsx_dir *dir;
        DIR *odir;
        struct dirent *dent;
-       uint_t allocated = 0;
+       unsigned int allocated = 0;
        char *low_mask;
 
        dir = talloc(mem_ctx, struct cifspsx_dir);
@@ -93,7 +93,7 @@ struct cifspsx_dir *cifspsx_list_unix(TALLOC_CTX *mem_ctx, struct ntvfs_request
        if (!odir) { return NULL; }
 
        while ((dent = readdir(odir))) {
-               uint_t i = dir->count;
+               unsigned int i = dir->count;
                char *full_name;
                char *low_name;
 
index 4e67b22e2323da7e9da0299e55bf40d0c6d7a94d..6ee69616101a17d026d7517565d21538e2bab1c9 100644 (file)
@@ -864,7 +864,7 @@ static NTSTATUS cifspsx_search_first(struct ntvfs_module_context *ntvfs,
        struct cifspsx_private *p = ntvfs->private_data;
        struct search_state *search;
        union smb_search_data file;
-       uint_t max_count;
+       unsigned int max_count;
 
        if (io->generic.level != RAW_SEARCH_TRANS2) {
                return NT_STATUS_NOT_SUPPORTED;
@@ -938,7 +938,7 @@ static NTSTATUS cifspsx_search_next(struct ntvfs_module_context *ntvfs,
        struct cifspsx_private *p = ntvfs->private_data;
        struct search_state *search;
        union smb_search_data file;
-       uint_t max_count;
+       unsigned int max_count;
 
        if (io->generic.level != RAW_SEARCH_TRANS2) {
                return NT_STATUS_NOT_SUPPORTED;
index 059145b6e5a486e27a6881e9f5a43ccb627aa9bc..547d038738fdc3c047a5338cf1f4371646d9ac79 100644 (file)
@@ -148,7 +148,7 @@ static NTSTATUS ntvfs_map_open_finish(struct ntvfs_module_context *ntvfs,
        time_t write_time = 0;
        uint32_t set_size = 0;
        union smb_setfileinfo *sf;
-       uint_t state;
+       unsigned int state;
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
@@ -579,7 +579,7 @@ static NTSTATUS ntvfs_map_fsinfo_finish(struct ntvfs_module_context *ntvfs,
 
        case RAW_QFS_DSKATTR: {
                /* map from generic to DSKATTR */
-               uint_t bpunit = 64;
+               unsigned int bpunit = 64;
 
                /* we need to scale the sizes to fit */
                for (bpunit=64; bpunit<0x10000; bpunit *= 2) {
@@ -1187,7 +1187,7 @@ static NTSTATUS ntvfs_map_write_finish(struct ntvfs_module_context *ntvfs,
 {
        union smb_lock *lck;
        union smb_close *cl;
-       uint_t state;
+       unsigned int state;
 
        if (NT_STATUS_IS_ERR(status)) {
                return status;
@@ -1381,7 +1381,7 @@ NTSTATUS ntvfs_map_read(struct ntvfs_module_context *ntvfs,
        union smb_read *rd2;
        union smb_lock *lck;
        NTSTATUS status;
-       uint_t state;
+       unsigned int state;
 
        rd2 = talloc(req, union smb_read);
        if (rd2 == NULL) {
index a14c8f64ae0c5fd5a98da7d1e0faac3a42f4b890..a372383daac68021780fd23b8c25e98fe3b82c62 100644 (file)
@@ -53,7 +53,7 @@ static uint32_t dos_mode_from_stat(struct pvfs_state *pvfs, struct stat *st)
   fill in the dos file attributes for a file
 */
 NTSTATUS pvfs_fill_dos_info(struct pvfs_state *pvfs, struct pvfs_filename *name,
-                           uint_t flags, int fd)
+                           unsigned int flags, int fd)
 {
        NTSTATUS status;
        DATA_BLOB lkey;
index 10fb7cf707ee39cf1acd0067d417e01981b72958..210433baef526642e1c94841c07cf7f1f60bc7b3 100644 (file)
@@ -88,7 +88,7 @@ NTSTATUS pvfs_fsinfo(struct ntvfs_module_context *ntvfs,
        struct pvfs_state *pvfs = talloc_get_type(ntvfs->private_data,
                                  struct pvfs_state);
        uint64_t blocks_free, blocks_total;
-       uint_t bpunit;
+       unsigned int bpunit;
        struct stat st;
        const uint16_t block_size = 512;
 
index b6c1d4f4979fb977591fc1b7915e7b55cd2b2d15..e54fc2d66906afb227fd5bd97ea085728a131e14 100644 (file)
@@ -76,7 +76,7 @@ static uint32_t pvfs_fileinfo_access(union smb_fileinfo *info)
 */
 NTSTATUS pvfs_query_ea_list(struct pvfs_state *pvfs, TALLOC_CTX *mem_ctx, 
                            struct pvfs_filename *name, int fd, 
-                           uint_t num_names,
+                           unsigned int num_names,
                            struct ea_name *names,
                            struct smb_ea_list *eas)
 {
index 8f462648bd1362e64b23636e76ea458df2db494b..9613b7078aacc5873ab87111e8a2034a5ce1c061 100644 (file)
@@ -59,7 +59,7 @@ static int component_compare(struct pvfs_state *pvfs, const char *comp, const ch
 */
 static NTSTATUS pvfs_case_search(struct pvfs_state *pvfs,
                                 struct pvfs_filename *name,
-                                uint_t flags)
+                                unsigned int flags)
 {
        /* break into a series of components */
        int num_components;
@@ -256,7 +256,7 @@ static NTSTATUS parse_stream_name(struct smb_iconv_convenience *ic,
   errors are returned if the filename is illegal given the flags
 */
 static NTSTATUS pvfs_unix_path(struct pvfs_state *pvfs, const char *cifs_name,
-                              uint_t flags, struct pvfs_filename *name)
+                              unsigned int flags, struct pvfs_filename *name)
 {
        char *ret, *p, *p_start;
        struct smb_iconv_convenience *ic = NULL;
@@ -389,7 +389,7 @@ static NTSTATUS pvfs_unix_path(struct pvfs_state *pvfs, const char *cifs_name,
 */
 static NTSTATUS pvfs_reduce_name(TALLOC_CTX *mem_ctx, 
                                 struct smb_iconv_convenience *iconv_convenience, 
-                                const char **fname, uint_t flags)
+                                const char **fname, unsigned int flags)
 {
        codepoint_t c;
        size_t c_size, len;
@@ -511,7 +511,7 @@ static NTSTATUS pvfs_reduce_name(TALLOC_CTX *mem_ctx,
 NTSTATUS pvfs_resolve_name(struct pvfs_state *pvfs, 
                           struct ntvfs_request *req,
                           const char *cifs_name,
-                          uint_t flags, struct pvfs_filename **name)
+                          unsigned int flags, struct pvfs_filename **name)
 {
        NTSTATUS status;
 
@@ -610,7 +610,7 @@ NTSTATUS pvfs_resolve_name(struct pvfs_state *pvfs,
 */
 NTSTATUS pvfs_resolve_partial(struct pvfs_state *pvfs, TALLOC_CTX *mem_ctx,
                              const char *unix_dir, const char *fname,
-                             uint_t flags, struct pvfs_filename **name)
+                             unsigned int flags, struct pvfs_filename **name)
 {
        NTSTATUS status;
 
@@ -647,7 +647,7 @@ NTSTATUS pvfs_resolve_partial(struct pvfs_state *pvfs, TALLOC_CTX *mem_ctx,
   to update the pvfs_filename stat information, and by pvfs_open()
 */
 NTSTATUS pvfs_resolve_name_fd(struct pvfs_state *pvfs, int fd,
-                             struct pvfs_filename *name, uint_t flags)
+                             struct pvfs_filename *name, unsigned int flags)
 {
        dev_t device = (dev_t)0;
        ino_t inode = 0;
index d0d2620648fbecf2c5d9c938832b1113154c4606..e6b53ee623b60b2bb17afa3573677950132a9b50 100644 (file)
@@ -232,10 +232,10 @@ static NTSTATUS fill_search_info(struct pvfs_state *pvfs,
   the search fill loop
 */
 static NTSTATUS pvfs_search_fill(struct pvfs_state *pvfs, TALLOC_CTX *mem_ctx, 
-                                uint_t max_count, 
+                                unsigned int max_count,
                                 struct pvfs_search_state *search,
                                 enum smb_search_data_level level,
-                                uint_t *reply_count,
+                                unsigned int *reply_count,
                                 void *search_private, 
                                 bool (*callback)(void *, const union smb_search_data *))
 {
@@ -323,7 +323,7 @@ static NTSTATUS pvfs_search_first_old(struct ntvfs_module_context *ntvfs,
        struct pvfs_state *pvfs = talloc_get_type(ntvfs->private_data,
                                  struct pvfs_state);
        struct pvfs_search_state *search;
-       uint_t reply_count;
+       unsigned int reply_count;
        uint16_t search_attrib;
        const char *pattern;
        NTSTATUS status;
@@ -415,7 +415,7 @@ static NTSTATUS pvfs_search_next_old(struct ntvfs_module_context *ntvfs,
        void *p;
        struct pvfs_search_state *search;
        struct pvfs_dir *dir;
-       uint_t reply_count, max_count;
+       unsigned int reply_count, max_count;
        uint16_t handle;
        NTSTATUS status;
 
@@ -467,7 +467,7 @@ static NTSTATUS pvfs_search_first_trans2(struct ntvfs_module_context *ntvfs,
        struct pvfs_state *pvfs = talloc_get_type(ntvfs->private_data,
                                  struct pvfs_state);
        struct pvfs_search_state *search;
-       uint_t reply_count;
+       unsigned int reply_count;
        uint16_t search_attrib, max_count;
        const char *pattern;
        NTSTATUS status;
@@ -565,7 +565,7 @@ static NTSTATUS pvfs_search_next_trans2(struct ntvfs_module_context *ntvfs,
        void *p;
        struct pvfs_search_state *search;
        struct pvfs_dir *dir;
-       uint_t reply_count;
+       unsigned int reply_count;
        uint16_t handle;
        NTSTATUS status;
 
@@ -629,7 +629,7 @@ static NTSTATUS pvfs_search_first_smb2(struct ntvfs_module_context *ntvfs,
        struct pvfs_state *pvfs = talloc_get_type(ntvfs->private_data,
                                  struct pvfs_state);
        struct pvfs_search_state *search;
-       uint_t reply_count;
+       unsigned int reply_count;
        uint16_t max_count;
        const char *pattern;
        NTSTATUS status;
@@ -732,7 +732,7 @@ static NTSTATUS pvfs_search_next_smb2(struct ntvfs_module_context *ntvfs,
        struct pvfs_state *pvfs = talloc_get_type(ntvfs->private_data,
                                  struct pvfs_state);
        struct pvfs_search_state *search;
-       uint_t reply_count;
+       unsigned int reply_count;
        uint16_t max_count;
        NTSTATUS status;
        struct pvfs_file *f;
index 7341d0d9ca40bd06e793c3fb98857e57f9e329cc..6354f7558fae6bc433ecbfd65147b019417a2cf8 100644 (file)
@@ -40,7 +40,7 @@ struct pvfs_state {
        struct GUID *base_fs_uuid;
 
        const char *share_name;
-       uint_t flags;
+       unsigned int flags;
 
        struct pvfs_mangle_context *mangle_ctx;
 
@@ -54,13 +54,13 @@ struct pvfs_state {
        struct pvfs_wait *wait_list;
 
        /* the sharing violation timeout (nsecs) */
-       uint_t sharing_violation_delay;
+       unsigned int sharing_violation_delay;
 
        /* the oplock break timeout (secs) */
-       uint_t oplock_break_timeout;
+       unsigned int oplock_break_timeout;
 
        /* the write time update delay (nsecs) */
-       uint_t writetime_delay;
+       unsigned int writetime_delay;
 
        /* filesystem attributes (see FS_ATTR_*) */
        uint32_t fs_attribs;
@@ -84,7 +84,7 @@ struct pvfs_state {
                struct pvfs_search_state *list;
 
                /* how long to keep inactive searches around for */
-               uint_t inactivity_time;
+               unsigned int inactivity_time;
        } search;
 
        /* used to accelerate acl mapping */
@@ -223,7 +223,7 @@ struct pvfs_search_state {
        uint16_t must_attrib;
        struct pvfs_dir *dir;
        time_t last_used;
-       uint_t num_ea_names;
+       unsigned int num_ea_names;
        struct ea_name *ea_names;
        struct tevent_timer *te;
 };
index f7f011572a4319bf385af3872583b2222d0c88e1..70ba340727b2cf981cb384ad57c10184a3b27de2 100644 (file)
@@ -63,7 +63,7 @@ struct svfs_dir *svfs_list_unix(TALLOC_CTX *mem_ctx, struct ntvfs_request *req,
        struct svfs_dir *dir;
        DIR *odir;
        struct dirent *dent;
-       uint_t allocated = 0;
+       unsigned int allocated = 0;
        char *low_mask;
 
        dir = talloc(mem_ctx, struct svfs_dir);
@@ -90,7 +90,7 @@ struct svfs_dir *svfs_list_unix(TALLOC_CTX *mem_ctx, struct ntvfs_request *req,
        if (!odir) { return NULL; }
 
        while ((dent = readdir(odir))) {
-               uint_t i = dir->count;
+               unsigned int i = dir->count;
                char *full_name;
                char *low_name;
 
index 9577e8673a504496f31ee7a1fe5f2ec8fe984974..6dbd6f0352bfcca3920d351a2b682a6ee74da7b3 100644 (file)
@@ -861,7 +861,7 @@ static NTSTATUS svfs_search_first(struct ntvfs_module_context *ntvfs,
        struct svfs_private *p = ntvfs->private_data;
        struct search_state *search;
        union smb_search_data file;
-       uint_t max_count;
+       unsigned int max_count;
 
        if (io->generic.level != RAW_SEARCH_TRANS2) {
                return NT_STATUS_NOT_SUPPORTED;
@@ -935,7 +935,7 @@ static NTSTATUS svfs_search_next(struct ntvfs_module_context *ntvfs,
        struct svfs_private *p = ntvfs->private_data;
        struct search_state *search;
        union smb_search_data file;
-       uint_t max_count;
+       unsigned int max_count;
 
        if (io->generic.level != RAW_SEARCH_TRANS2) {
                return NT_STATUS_NOT_SUPPORTED;
index ff02eed994318b0931f38a08f12f12e5f8b368d6..e279b5ab494e4eae3bbd6c84780a61ca2d2be692 100644 (file)
@@ -721,7 +721,7 @@ static NTSTATUS cvfs_search_first(struct ntvfs_module_context *ntvfs,
        struct cvfs_private *p = ntvfs->private_data;
        struct smb2_find f;
        enum smb_search_data_level smb2_level;
-       uint_t count, i;
+       unsigned int count, i;
        union smb_search_data *data;
        NTSTATUS status;
 
index 70ad6ee253411b15d4f8a91ca337982232ddd022..8102c995369bdcdb8941ef9486faea205d1cc5a4 100644 (file)
@@ -40,7 +40,7 @@ struct unixuid_private {
 struct unix_sec_ctx {
        uid_t uid;
        gid_t gid;
-       uint_t ngroups;
+       unsigned int ngroups;
        gid_t *groups;
 };
 
index 182c803f965d590754eed907fb0cff31b4bbd7f8..c17cde070d6b53845105edabc8088e5f8c435230 100644 (file)
@@ -173,7 +173,7 @@ size_t smbsrv_blob_push_string(TALLOC_CTX *mem_ctx,
 NTSTATUS smbsrv_blob_append_string(TALLOC_CTX *mem_ctx,
                                   DATA_BLOB *blob,
                                   const char *str,
-                                  uint_t len_offset,
+                                  unsigned int len_offset,
                                   int default_flags,
                                   int flags)
 {
@@ -197,7 +197,7 @@ NTSTATUS smbsrv_push_passthru_fsinfo(TALLOC_CTX *mem_ctx,
                                     union smb_fsinfo *fsinfo,
                                     int default_str_flags)
 {
-       uint_t i;
+       unsigned int i;
        DATA_BLOB guid_blob;
 
        switch (level) {
@@ -302,7 +302,7 @@ NTSTATUS smbsrv_push_passthru_fileinfo(TALLOC_CTX *mem_ctx,
                                       union smb_fileinfo *st,
                                       int default_str_flags)
 {
-       uint_t i;
+       unsigned int i;
        size_t list_size;
 
        switch (level) {
@@ -650,7 +650,7 @@ NTSTATUS smbsrv_push_passthru_search(TALLOC_CTX *mem_ctx,
                                     int default_str_flags)
 {
        uint8_t *data;
-       uint_t ofs = blob->length;
+       unsigned int ofs = blob->length;
 
        switch (level) {
        case RAW_SEARCH_DATA_DIRECTORY_INFO:
index 91b6aba0963bb002aa2cda183af20935fe6faf8a..74c98ea738b03fb343faffedb1cd538f4637fc5c 100644 (file)
@@ -527,7 +527,7 @@ static void reply_nttrans_send(struct ntvfs_request *ntvfs)
           the negotiated buffer size */
        do {
                uint32_t this_data, this_param, max_bytes;
-               uint_t align1 = 1, align2 = (params_left ? 2 : 0);
+               unsigned int align1 = 1, align2 = (params_left ? 2 : 0);
                struct smbsrv_request *this_req;
 
                max_bytes = req_max_data(req) - (align1 + align2);
index 2c99a38575c04eafbc8d932acbf4b031eea7653d..ef7cbbf936b8c38b97b2557a1f0418c0559b3bab 100644 (file)
@@ -1380,7 +1380,7 @@ static void reply_printqueue_send(struct ntvfs_request *ntvfs)
        struct smbsrv_request *req;
        union smb_lpq *lpq;
        int i, maxcount;
-       const uint_t el_size = 28;
+       const unsigned int el_size = 28;
 
        SMBSRV_CHECK_ASYNC_STATUS(lpq,union smb_lpq);
 
@@ -1647,8 +1647,8 @@ static void reply_lockingX_send(struct ntvfs_request *ntvfs)
 void smbsrv_reply_lockingX(struct smbsrv_request *req)
 {
        union smb_lock *lck;
-       uint_t total_locks, i;
-       uint_t lck_size;
+       unsigned int total_locks, i;
+       unsigned int lck_size;
        uint8_t *p;
 
        /* parse request */
index 4bae08718753a4a9fd8044dc866771af61455e1f..65ed3d0af3a6336c1b0120ed172e9a796cfb679f 100644 (file)
@@ -76,7 +76,7 @@ struct smbsrv_request *smbsrv_init_request(struct smbsrv_connection *smb_conn)
 /*
   setup a chained reply in req->out with the given word count and initial data buffer size. 
 */
-static void req_setup_chain_reply(struct smbsrv_request *req, uint_t wct, uint_t buflen)
+static void req_setup_chain_reply(struct smbsrv_request *req, unsigned int wct, unsigned int buflen)
 {
        uint32_t chain_base_size = req->out.size;
 
@@ -110,7 +110,7 @@ static void req_setup_chain_reply(struct smbsrv_request *req, uint_t wct, uint_t
   the caller will then fill in the command words and data before calling req_send_reply() to 
   send the reply on its way
 */
-void smbsrv_setup_reply(struct smbsrv_request *req, uint_t wct, size_t buflen)
+void smbsrv_setup_reply(struct smbsrv_request *req, unsigned int wct, size_t buflen)
 {
        uint16_t flags2;
 
@@ -233,7 +233,7 @@ int req_max_data(struct smbsrv_request *req)
   To cope with this req->out.ptr is supplied. This will be updated to
   point at the same offset into the packet as before this call
 */
-static void req_grow_allocation(struct smbsrv_request *req, uint_t new_size)
+static void req_grow_allocation(struct smbsrv_request *req, unsigned int new_size)
 {
        int delta;
        uint8_t *buf2;
@@ -399,7 +399,7 @@ void smbsrv_send_error(struct smbsrv_request *req, NTSTATUS status)
 size_t req_push_str(struct smbsrv_request *req, uint8_t *dest, const char *str, int dest_len, size_t flags)
 {
        size_t len;
-       uint_t grow_size;
+       unsigned int grow_size;
        uint8_t *buf0;
        const int max_bytes_per_char = 3;
 
@@ -478,7 +478,7 @@ size_t req_append_var_block(struct smbsrv_request *req,
   on failure zero is returned and *dest is set to NULL, otherwise the number
   of bytes consumed in the packet is returned
 */
-static size_t req_pull_ucs2(struct request_bufinfo *bufinfo, const char **dest, const uint8_t *src, int byte_len, uint_t flags)
+static size_t req_pull_ucs2(struct request_bufinfo *bufinfo, const char **dest, const uint8_t *src, int byte_len, unsigned int flags)
 {
        int src_len, src_len2, alignment=0;
        bool ret;
@@ -536,7 +536,7 @@ static size_t req_pull_ucs2(struct request_bufinfo *bufinfo, const char **dest,
   on failure zero is returned and *dest is set to NULL, otherwise the number
   of bytes consumed in the packet is returned
 */
-static size_t req_pull_ascii(struct request_bufinfo *bufinfo, const char **dest, const uint8_t *src, int byte_len, uint_t flags)
+static size_t req_pull_ascii(struct request_bufinfo *bufinfo, const char **dest, const uint8_t *src, int byte_len, unsigned int flags)
 {
        int src_len, src_len2;
        bool ret;
@@ -585,7 +585,7 @@ static size_t req_pull_ascii(struct request_bufinfo *bufinfo, const char **dest,
   on failure zero is returned and *dest is set to NULL, otherwise the number
   of bytes consumed in the packet is returned
 */
-size_t req_pull_string(struct request_bufinfo *bufinfo, const char **dest, const uint8_t *src, int byte_len, uint_t flags)
+size_t req_pull_string(struct request_bufinfo *bufinfo, const char **dest, const uint8_t *src, int byte_len, unsigned int flags)
 {
        if (!(flags & STR_ASCII) && 
            (((flags & STR_UNICODE) || (bufinfo->flags & BUFINFO_FLAG_UNICODE)))) {
@@ -605,7 +605,7 @@ size_t req_pull_string(struct request_bufinfo *bufinfo, const char **dest, const
   on failure *dest is set to the zero length string. This seems to
   match win2000 behaviour
 */
-size_t req_pull_ascii4(struct request_bufinfo *bufinfo, const char **dest, const uint8_t *src, uint_t flags)
+size_t req_pull_ascii4(struct request_bufinfo *bufinfo, const char **dest, const uint8_t *src, unsigned int flags)
 {
        ssize_t ret;
 
@@ -667,7 +667,7 @@ bool req_data_oob(struct request_bufinfo *bufinfo, const uint8_t *ptr, uint32_t
 /* 
    pull an open file handle from a packet, taking account of the chained_fnum
 */
-static uint16_t req_fnum(struct smbsrv_request *req, const uint8_t *base, uint_t offset)
+static uint16_t req_fnum(struct smbsrv_request *req, const uint8_t *base, unsigned int offset)
 {
        if (req->chained_fnum != -1) {
                return req->chained_fnum;
@@ -675,7 +675,7 @@ static uint16_t req_fnum(struct smbsrv_request *req, const uint8_t *base, uint_t
        return SVAL(base, offset);
 }
 
-struct ntvfs_handle *smbsrv_pull_fnum(struct smbsrv_request *req, const uint8_t *base, uint_t offset)
+struct ntvfs_handle *smbsrv_pull_fnum(struct smbsrv_request *req, const uint8_t *base, unsigned int offset)
 {
        struct smbsrv_handle *handle;
        uint16_t fnum = req_fnum(req, base, offset);
@@ -699,7 +699,7 @@ struct ntvfs_handle *smbsrv_pull_fnum(struct smbsrv_request *req, const uint8_t
        return handle->ntvfs;
 }
 
-void smbsrv_push_fnum(uint8_t *base, uint_t offset, struct ntvfs_handle *ntvfs)
+void smbsrv_push_fnum(uint8_t *base, unsigned int offset, struct ntvfs_handle *ntvfs)
 {
        struct smbsrv_handle *handle = talloc_get_type(ntvfs->frontend_data.private_data,
                                       struct smbsrv_handle);
index a9445860f16f420bd79cfc8f859e7dc18aa6821e..36dc3175e8d25c56b7fd40c1dbf1836a6d8d4c4c 100644 (file)
@@ -706,7 +706,7 @@ static NTSTATUS find_fill_info(struct find_state *state,
        struct smbsrv_request *req = state->op->req;
        struct smb_trans2 *trans = state->op->trans;
        uint8_t *data;
-       uint_t ofs = trans->out.data.length;
+       unsigned int ofs = trans->out.data.length;
        uint32_t ea_size;
 
        switch (state->data_level) {
@@ -802,7 +802,7 @@ static bool find_callback(void *private_data, const union smb_search_data *file)
 {
        struct find_state *state = talloc_get_type(private_data, struct find_state);
        struct smb_trans2 *trans = state->op->trans;
-       uint_t old_length;
+       unsigned int old_length;
 
        old_length = trans->out.data.length;
 
@@ -1116,7 +1116,7 @@ static void reply_trans_send(struct ntvfs_request *ntvfs)
           the negotiated buffer size */
        do {
                uint16_t this_data, this_param, max_bytes;
-               uint_t align1 = 1, align2 = (params_left ? 2 : 0);
+               unsigned int align1 = 1, align2 = (params_left ? 2 : 0);
                struct smbsrv_request *this_req;
 
                max_bytes = req_max_data(req) - (align1 + align2);
index d8021461280db2eb57e4cf82b932e82886a65650..ed5a262b8102ff3c365ca3f21d9685fe8ce87463 100644 (file)
@@ -84,7 +84,7 @@ static NTSTATUS smb2srv_send_oplock_break(void *p, struct ntvfs_handle *h, uint8
        return NT_STATUS_OK;
 }
 
-struct ntvfs_handle *smb2srv_pull_handle(struct smb2srv_request *req, const uint8_t *base, uint_t offset)
+struct ntvfs_handle *smb2srv_pull_handle(struct smb2srv_request *req, const uint8_t *base, unsigned int offset)
 {
        struct smbsrv_tcon *tcon;
        struct smbsrv_handle *handle;
@@ -160,7 +160,7 @@ struct ntvfs_handle *smb2srv_pull_handle(struct smb2srv_request *req, const uint
        return handle->ntvfs;
 }
 
-void smb2srv_push_handle(uint8_t *base, uint_t offset, struct ntvfs_handle *ntvfs)
+void smb2srv_push_handle(uint8_t *base, unsigned int offset, struct ntvfs_handle *ntvfs)
 {
        struct smbsrv_handle *handle = talloc_get_type(ntvfs->frontend_data.private_data,
                                       struct smbsrv_handle);
index 6c18e18e4e3420d1f5fb02b085555388c43b195f..49e8a5975c8a9324250a3bf7af933a72d876b5ba 100644 (file)
@@ -49,7 +49,7 @@ static const uint32_t open_attrs_table[] = {
 };
 
 struct trunc_open_results {
-       uint_t num;
+       unsigned int num;
        uint32_t init_attr;
        uint32_t trunc_attr;
        uint32_t result_attr;
@@ -91,7 +91,7 @@ bool torture_openattrtest(struct torture_context *tctx,
        const char *fname = "\\openattr.file";
        int fnum1;
        uint16_t attr;
-       uint_t i, j, k, l;
+       unsigned int i, j, k, l;
        int failures = 0;
 
        for (k = 0, i = 0; i < sizeof(open_attrs_table)/sizeof(uint32_t); i++) {
@@ -163,7 +163,7 @@ bool torture_openattrtest(struct torture_context *tctx,
                                                torture_comment(tctx, "[%d] getatr check failed. [0x%x] trunc [0x%x] got attr 0x%x, should be 0x%x\n",
                                                       k, open_attrs_table[i],
                                                       open_attrs_table[j],
-                                                      (uint_t)attr,
+                                                      (unsigned int)attr,
                                                       attr_results[l].result_attr);
                                                CHECK_MAX_FAILURES(error_exit);
                                        }
index ed389fb9d54ae2edf16b1580aee16e50abd671d3..e4b4c62f61962cca0e276ae6f962b86b0b2b20a8 100644 (file)
@@ -568,7 +568,7 @@ static bool rw_torture2(struct torture_context *tctx,
 
        for (i=0;i<torture_numops;i++)
        {
-               size_t buf_size = ((uint_t)random()%(sizeof(buf)-1))+ 1;
+               size_t buf_size = ((unsigned int)random()%(sizeof(buf)-1))+ 1;
                if (i % 10 == 0) {
                        if (torture_setting_bool(tctx, "progress", true)) {
                                torture_comment(tctx, "%d\r", i); fflush(stdout);
index 501647eee49eeaf187a6e867aa634e75802449f7..2019ec5a0269be478c58e86bbb926431fe10e9f4 100644 (file)
@@ -1399,7 +1399,7 @@ static const struct {
 };
 
 
-static void progress_bar(struct torture_context *tctx, uint_t i, uint_t total)
+static void progress_bar(struct torture_context *tctx, unsigned int i, unsigned int total)
 {
        if (torture_setting_bool(tctx, "progress", true)) {
                torture_comment(tctx, "%5d/%5d\r", i, total);
@@ -2279,8 +2279,8 @@ static bool createx_test_file(struct torture_context *tctx,
 /* TODO When redirecting stdout to a file, the progress bar really screws up
  * the output. Could use a switch "--noprogress", or direct the progress bar to
  * stderr? No other solution? */
-static void createx_progress_bar(struct torture_context *tctx, uint_t i,
-    uint_t total, uint_t skipped)
+static void createx_progress_bar(struct torture_context *tctx, unsigned int i,
+    unsigned int total, unsigned int skipped)
 {
        if (torture_setting_bool(tctx, "progress", true)) {
                torture_comment(tctx, "%5d/%5d (%d skipped)\r", i, total,
index 8feea2353462b0b4d7fea14b8304c7e71523d453..cece543fddc711cd4212bd5770f2108097d2a26c 100644 (file)
@@ -42,7 +42,7 @@ static bool torture_locktest1(struct torture_context *tctx,
        const char *fname = BASEDIR "\\lockt1.lck";
        int fnum1, fnum2, fnum3;
        time_t t1, t2;
-       uint_t lock_timeout;
+       unsigned int lock_timeout;
 
        if (!torture_setup_dir(cli1, BASEDIR)) {
                return false;
@@ -120,7 +120,7 @@ static bool torture_locktest1(struct torture_context *tctx,
                        "error: This server appears not to support timed lock requests");
        }
        torture_comment(tctx, "server slept for %u seconds for a %u second timeout\n",
-              (uint_t)(t2-t1), lock_timeout);
+              (unsigned int)(t2-t1), lock_timeout);
 
        torture_assert_ntstatus_ok(tctx, smbcli_close(cli1->tree, fnum2),
                talloc_asprintf(tctx, "close1 failed (%s)", smbcli_errstr(cli1->tree)));
index 0d710f2cfe561c5c1f27beaad638a621f34dc125..0f38c9ff03d50e35605799f20c045272ee106c7f 100644 (file)
@@ -29,7 +29,7 @@ static TDB_CONTEXT *tdb;
 
 #define NAME_LENGTH 20
 
-static uint_t total, collisions, failures;
+static unsigned int total, collisions, failures;
 
 static bool test_one(struct torture_context *tctx ,struct smbcli_state *cli, 
                     const char *name)
@@ -114,8 +114,8 @@ static bool test_one(struct torture_context *tctx ,struct smbcli_state *cli,
 static char *gen_name(TALLOC_CTX *mem_ctx)
 {
        const char *chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz._-$~...";
-       uint_t max_idx = strlen(chars);
-       uint_t len;
+       unsigned int max_idx = strlen(chars);
+       unsigned int len;
        int i;
        char *p;
        char *name;
index ab79d798fc52be4bad1d5d0d7b8f26b77594c639..2b08ad2d8a93a7e72d820ef8d3329eca628a9c8f 100644 (file)
@@ -68,7 +68,7 @@ static bool rw_torture(struct torture_context *tctx, struct smbcli_state *c)
        generate_random_buffer(buf, sizeof(buf));
 
        for (i=0;i<torture_numops;i++) {
-               uint_t n = (uint_t)random()%10;
+               unsigned int n = (unsigned int)random()%10;
                if (i % 10 == 0) {
                        if (torture_setting_bool(tctx, "progress", true)) {
                                torture_comment(tctx, "%d\r", i);
index b0ab41cb3dbaa4da6610d078729aed49a06b71ea..4b7128f3abbe26b0dcce7ecb7a5bb15c2f5e30e7 100644 (file)
@@ -48,9 +48,9 @@ static struct gentest_options {
        int analyze;
        int analyze_always;
        int analyze_continuous;
-       uint_t max_open_handles;
-       uint_t seed;
-       uint_t numops;
+       unsigned int max_open_handles;
+       unsigned int seed;
+       unsigned int numops;
        int use_oplocks;
        char **ignore_patterns;
        const char *seeds_file;
@@ -67,12 +67,12 @@ static struct gentest_options {
 /* mapping between open handles on the server and local handles */
 static struct {
        bool active;
-       uint_t instance;
+       unsigned int instance;
        struct smb2_handle smb2_handle[NSERVERS]; /* SMB2 */
        uint16_t smb_handle[NSERVERS];            /* SMB */
        const char *name;
 } *open_handles;
-static uint_t num_open_handles;
+static unsigned int num_open_handles;
 
 /* state information for the servers. We open NINSTANCES connections to
    each server */
@@ -86,7 +86,7 @@ static struct {
 
 /* the seeds and flags for each operation */
 static struct {
-       uint_t seed;
+       unsigned int seed;
        bool disabled;
 } *op_parms;
 
@@ -111,9 +111,9 @@ static struct {
 /* info relevant to the current operation */
 static struct {
        const char *name;
-       uint_t seed;
+       unsigned int seed;
        NTSTATUS status;
-       uint_t opnum;
+       unsigned int opnum;
        TALLOC_CTX *mem_ctx;
        const char *mismatch;
 } current_op;
@@ -277,9 +277,9 @@ static bool connect_servers(struct tevent_context *ev,
 /*
   work out the time skew between the servers - be conservative
 */
-static uint_t time_skew(void)
+static unsigned int time_skew(void)
 {
-       uint_t ret;
+       unsigned int ret;
        if (options.smb2) {
                ret = labs(servers[0].smb2_tree[0]->session->transport->negotiate.system_time -
                           servers[1].smb2_tree[0]->session->transport->negotiate.system_time);
@@ -299,9 +299,9 @@ static bool smb2_handle_equal(const struct smb2_handle *h1, const struct smb2_ha
 /*
   turn a server handle into a local handle
 */
-static uint_t fnum_to_handle_smb2(int server, int instance, struct smb2_handle server_handle)
+static unsigned int fnum_to_handle_smb2(int server, int instance, struct smb2_handle server_handle)
 {
-       uint_t i;
+       unsigned int i;
        for (i=0;i<options.max_open_handles;i++) {
                if (!open_handles[i].active ||
                    instance != open_handles[i].instance) continue;
@@ -317,9 +317,9 @@ static uint_t fnum_to_handle_smb2(int server, int instance, struct smb2_handle s
 /*
   turn a server handle into a local handle
 */
-static uint_t fnum_to_handle_smb(int server, int instance, uint16_t server_handle)
+static unsigned int fnum_to_handle_smb(int server, int instance, uint16_t server_handle)
 {
-       uint_t i;
+       unsigned int i;
        for (i=0;i<options.max_open_handles;i++) {
                if (!open_handles[i].active ||
                    instance != open_handles[i].instance) continue;
@@ -450,7 +450,7 @@ static void gen_remove_handle_smb(int instance, uint16_t handles[NSERVERS])
 /*
   return true with 'chance' probability as a percentage
 */
-static bool gen_chance(uint_t chance)
+static bool gen_chance(unsigned int chance)
 {
        return ((random() % 100) <= chance);
 }
@@ -511,7 +511,7 @@ static uint16_t gen_fnum_close(int instance)
 */
 static int gen_int_range(uint64_t min, uint64_t max)
 {
-       uint_t r = random();
+       unsigned int r = random();
        return min + (r % (1+max-min));
 }
 
@@ -640,9 +640,9 @@ static uint32_t gen_bits_levels(int nlevels, ...)
 /*
   generate a bitmask
 */
-static uint32_t gen_bits_mask(uint_t mask)
+static uint32_t gen_bits_mask(unsigned int mask)
 {
-       uint_t ret = random();
+       unsigned int ret = random();
        return ret & mask;
 }
 
@@ -869,9 +869,9 @@ static NTTIME gen_timewarp(void)
 /*
   generate a file allocation size
 */
-static uint_t gen_alloc_size(void)
+static unsigned int gen_alloc_size(void)
 {
-       uint_t ret;
+       unsigned int ret;
 
        if (gen_chance(30)) return 0;
 
index 12be00f29882b682dee0dda9018e9ce793fb71f9..17a46a482a021c39d9116857ae94728f14667092 100644 (file)
@@ -33,9 +33,9 @@ static int showall;
 static int analyze;
 static int hide_unlock_fails;
 static int use_oplocks;
-static uint_t lock_range = 100;
-static uint_t lock_base = 0;
-static uint_t min_length = 0;
+static unsigned int lock_range = 100;
+static unsigned int lock_base = 0;
+static unsigned int min_length = 0;
 static int exact_error_codes;
 static int zero_zero;
 
@@ -216,8 +216,8 @@ static bool test_one(struct smbcli_state *cli[NSERVERS][NCONNECTIONS],
                     int fnum[NSERVERS][NCONNECTIONS][NFILES],
                     struct record *rec)
 {
-       uint_t conn = rec->conn;
-       uint_t f = rec->f;
+       unsigned int conn = rec->conn;
+       unsigned int f = rec->f;
        uint64_t start = rec->start;
        uint64_t len = rec->len;
        enum brl_type op = rec->lock_type;
@@ -426,7 +426,7 @@ static int test_locks(struct tevent_context *ev,
 #endif
                        recorded[n].conn = random() % NCONNECTIONS;
                        recorded[n].f = random() % NFILES;
-                       recorded[n].start = lock_base + ((uint_t)random() % (lock_range-1));
+                       recorded[n].start = lock_base + ((unsigned int)random() % (lock_range-1));
                        recorded[n].len =  min_length +
                                random() % (lock_range-(recorded[n].start-lock_base));
                        recorded[n].start *= RANGE_MULTIPLE;
index 40b008588150796a7edd28af8b7fbe624de2f3cd..86f04cc7b0d9d28fb924c3401431ed773a23dc7f 100644 (file)
@@ -55,7 +55,7 @@ static bool use_oplocks;
 struct record {
        char r1, r2;
        char conn, f, fstype;
-       uint_t start, len;
+       unsigned int start, len;
        char needed;
 };
 
@@ -95,7 +95,7 @@ static bool try_close(struct smbcli_state *c, int fstype, int fd)
 }
 
 static bool try_lock(struct smbcli_state *c, int fstype, 
-                    int fd, uint_t start, uint_t len,
+                    int fd, unsigned int start, unsigned int len,
                     enum brl_type op)
 {
        struct flock lock;
@@ -117,7 +117,7 @@ static bool try_lock(struct smbcli_state *c, int fstype,
 }
 
 static bool try_unlock(struct smbcli_state *c, int fstype, 
-                      int fd, uint_t start, uint_t len)
+                      int fd, unsigned int start, unsigned int len)
 {
        struct flock lock;
 
@@ -228,13 +228,13 @@ static bool test_one(struct smbcli_state *cli[NSERVERS][NCONNECTIONS],
                     int fnum[NSERVERS][NUMFSTYPES][NCONNECTIONS][NFILES],
                     struct record *rec)
 {
-       uint_t conn = rec->conn;
-       uint_t f = rec->f;
-       uint_t fstype = rec->fstype;
-       uint_t start = rec->start;
-       uint_t len = rec->len;
-       uint_t r1 = rec->r1;
-       uint_t r2 = rec->r2;
+       unsigned int conn = rec->conn;
+       unsigned int f = rec->f;
+       unsigned int fstype = rec->fstype;
+       unsigned int start = rec->start;
+       unsigned int len = rec->len;
+       unsigned int r1 = rec->r1;
+       unsigned int r2 = rec->r2;
        enum brl_type op;
        int server;
        bool ret[NSERVERS];
@@ -384,7 +384,7 @@ static void test_locks(TALLOC_CTX *mem_ctx, char *share1, char *share2,
                recorded[n].conn = random() % NCONNECTIONS;
                recorded[n].fstype = random() % NUMFSTYPES;
                recorded[n].f = random() % NFILES;
-               recorded[n].start = LOCKBASE + ((uint_t)random() % (LOCKRANGE-1));
+               recorded[n].start = LOCKBASE + ((unsigned int)random() % (LOCKRANGE-1));
                recorded[n].len = 1 + 
                        random() % (LOCKRANGE-(recorded[n].start-LOCKBASE));
                recorded[n].start *= RANGE_MULTIPLE;
index 2c9e5680035434c33d03f9ad2e2de6f9041c1470..fa8155e2c30307d7e3a3fa761eaffc59390d283a 100644 (file)
@@ -46,8 +46,8 @@ struct lock_info {
 
 struct createx_params {
        char *fname;
-       uint_t create_options;
-       uint_t create_disposition;
+       unsigned int create_options;
+       unsigned int create_disposition;
        int handle;
 };
 
@@ -72,8 +72,8 @@ static struct {
 
 static bool nb_do_createx(struct ftable *f,
                          const char *fname,
-                         uint_t create_options,
-                         uint_t create_disposition,
+                         unsigned int create_options,
+                         unsigned int create_disposition,
                          int handle,
                          NTSTATUS status,
                          bool retry);
@@ -82,8 +82,8 @@ static bool nb_do_lockx(bool relock, int handle, off_t offset, int size, NTSTATU
 
 static void nb_set_createx_params(struct ftable *f,
                                  const char *fname,
-                                 uint_t create_options,
-                                 uint_t create_disposition,
+                                 unsigned int create_options,
+                                 unsigned int create_disposition,
                                  int handle)
 {
        struct createx_params *cp = &f->cp;
@@ -455,8 +455,8 @@ bool nb_unlink(const char *fname, int attr, NTSTATUS status, bool retry)
 
 static bool nb_do_createx(struct ftable *f,
                          const char *fname,
-                         uint_t create_options,
-                         uint_t create_disposition,
+                         unsigned int create_options,
+                         unsigned int create_disposition,
                          int handle,
                          NTSTATUS status,
                          bool retry)
@@ -465,7 +465,7 @@ static bool nb_do_createx(struct ftable *f,
        uint32_t desired_access;
        NTSTATUS ret;
        TALLOC_CTX *mem_ctx;
-       uint_t flags = 0;
+       unsigned int flags = 0;
 
        mem_ctx = talloc_init("raw_open");
 
@@ -531,7 +531,7 @@ static bool nb_do_createx(struct ftable *f,
 }
 
 bool nb_createx(const char *fname, 
-              uint_t create_options, uint_t create_disposition, int handle,
+              unsigned int create_options, unsigned int create_disposition, int handle,
               NTSTATUS status)
 {
        return nb_do_createx(NULL, fname, create_options, create_disposition, handle, status, false);
@@ -664,7 +664,7 @@ bool nb_lockx(int handle, off_t offset, int size, NTSTATUS status)
        return nb_do_lockx(false, handle, offset, size, status);
 }
 
-bool nb_unlockx(int handle, uint_t offset, int size, NTSTATUS status)
+bool nb_unlockx(int handle, unsigned int offset, int size, NTSTATUS status)
 {
        union smb_lock io;
        int i;
index 032df87a4d1635462feb03cf11949b8b9c272ca7..86cae383ffb82152bac1fe28508ffc412cc96524 100644 (file)
 static struct {
        const char *name;
        enum smb_fileinfo_level level;
-       uint_t only_paths:1;
-       uint_t only_handles:1;
+       unsigned int only_paths:1;
+       unsigned int only_handles:1;
        uint32_t capability_mask;
-       uint_t expected_ipc_access_denied:1;
+       unsigned int expected_ipc_access_denied:1;
        NTSTATUS expected_ipc_fnum_status;
        NTSTATUS fnum_status, fname_status;
        union smb_fileinfo fnum_finfo, fname_finfo;
@@ -182,8 +182,8 @@ static union smb_fileinfo *fname_find(bool is_ipc, const char *name)
 /* local macros to make the code below more readable */
 #define VAL_EQUAL(n1, v1, n2, v2) do {if (s1->n1.out.v1 != s2->n2.out.v2) { \
         printf("%s/%s [%u] != %s/%s [%u] at %s(%d)\n", \
-               #n1, #v1, (uint_t)s1->n1.out.v1, \
-               #n2, #v2, (uint_t)s2->n2.out.v2, \
+               #n1, #v1, (unsigned int)s1->n1.out.v1, \
+               #n2, #v2, (unsigned int)s2->n2.out.v2, \
               __FILE__, __LINE__); \
         ret = false; \
 }} while(0)
@@ -211,8 +211,8 @@ static union smb_fileinfo *fname_find(bool is_ipc, const char *name)
 #define VAL_UNKNOWN(n1, v1) do {if (s1->n1.out.v1 != 0) { \
         printf("%s/%s non-zero unknown - %u (0x%x) at %s(%d)\n", \
                #n1, #v1, \
-              (uint_t)s1->n1.out.v1, \
-              (uint_t)s1->n1.out.v1, \
+              (unsigned int)s1->n1.out.v1, \
+              (unsigned int)s1->n1.out.v1, \
               __FILE__, __LINE__); \
         ret = false; \
 }} while(0)
@@ -529,21 +529,21 @@ static bool torture_raw_qfileinfo_internals(struct torture_context *torture,
        s1 = fnum_find(sname); \
        if (s1 && s1->stype.out.tfield != correct_size) { \
                printf("(%d) handle %s/%s incorrect - %u should be %u\n", __LINE__, #stype, #tfield,  \
-                      (uint_t)s1->stype.out.tfield, \
-                      (uint_t)correct_size); \
+                      (unsigned int)s1->stype.out.tfield, \
+                      (unsigned int)correct_size); \
                ret = false; \
        } \
        s1 = fname_find(is_ipc, sname); \
        if (s1 && s1->stype.out.tfield != correct_size) { \
                printf("(%d) path %s/%s incorrect - %u should be %u\n", __LINE__, #stype, #tfield,  \
-                      (uint_t)s1->stype.out.tfield, \
-                      (uint_t)correct_size); \
+                      (unsigned int)s1->stype.out.tfield, \
+                      (unsigned int)correct_size); \
                ret = false; \
        }} while (0)
 
        s1 = fnum_find("STANDARD_INFO");
        correct_size = s1->standard_info.out.size;
-       torture_comment(torture, "size: %u\n", (uint_t)correct_size);
+       torture_comment(torture, "size: %u\n", (unsigned int)correct_size);
        
        SIZE_CHECK("GETATTR",                  getattr,                  size);
        SIZE_CHECK("GETATTRE",                 getattre,                 size);
@@ -564,7 +564,7 @@ static bool torture_raw_qfileinfo_internals(struct torture_context *torture,
 
        s1 = fnum_find("STANDARD_INFO");
        correct_size = s1->standard_info.out.alloc_size;
-       torture_comment(torture, "alloc_size: %u\n", (uint_t)correct_size);
+       torture_comment(torture, "alloc_size: %u\n", (unsigned int)correct_size);
        
        SIZE_CHECK("GETATTRE",                 getattre,                 alloc_size);
        SIZE_CHECK("STANDARD",                 standard,                 alloc_size);
@@ -583,21 +583,21 @@ static bool torture_raw_qfileinfo_internals(struct torture_context *torture,
        s1 = fnum_find(sname); \
        if (s1 && s1->stype.out.tfield != correct_attrib) { \
                printf("(%d) handle %s/%s incorrect - 0x%x should be 0x%x\n", __LINE__, #stype, #tfield,  \
-                      (uint_t)s1->stype.out.tfield, \
-                      (uint_t)correct_attrib); \
+                      (unsigned int)s1->stype.out.tfield, \
+                      (unsigned int)correct_attrib); \
                ret = false; \
        } \
        s1 = fname_find(is_ipc, sname); \
        if (s1 && s1->stype.out.tfield != correct_attrib) { \
                printf("(%d) path %s/%s incorrect - 0x%x should be 0x%x\n", __LINE__, #stype, #tfield,  \
-                      (uint_t)s1->stype.out.tfield, \
-                      (uint_t)correct_attrib); \
+                      (unsigned int)s1->stype.out.tfield, \
+                      (unsigned int)correct_attrib); \
                ret = false; \
        }} while (0)
 
        s1 = fnum_find("BASIC_INFO");
        correct_attrib = s1->basic_info.out.attrib;
-       torture_comment(torture, "attrib: 0x%x\n", (uint_t)correct_attrib);
+       torture_comment(torture, "attrib: 0x%x\n", (unsigned int)correct_attrib);
        
        ATTRIB_CHECK("GETATTR",                   getattr,                   attrib);
        if (!is_ipc) {
@@ -825,13 +825,13 @@ static bool torture_raw_qfileinfo_internals(struct torture_context *torture,
        if (s1 && s1->stype.out.tfield != 0) { \
                printf("(%d) handle %s/%s unknown != 0 (0x%x)\n", __LINE__, \
                        #stype, #tfield, \
-                      (uint_t)s1->stype.out.tfield); \
+                      (unsigned int)s1->stype.out.tfield); \
        } \
        s1 = fname_find(is_ipc, sname); \
        if (s1 && s1->stype.out.tfield != 0) { \
                printf("(%d) path %s/%s unknown != 0 (0x%x)\n", __LINE__, \
                        #stype, #tfield, \
-                      (uint_t)s1->stype.out.tfield); \
+                      (unsigned int)s1->stype.out.tfield); \
        }} while (0)
 #endif
        /* now get a bit fancier .... */
index e4492a5312c1c0fcdadc0160d69bce7492c4ac40..111eac14d5cf28140416036de56a667d0f414695 100644 (file)
@@ -69,16 +69,16 @@ static union smb_fsinfo *find(const char *name)
 /* local macros to make the code below more readable */
 #define VAL_EQUAL(n1, v1, n2, v2) do {if (s1->n1.out.v1 != s2->n2.out.v2) { \
         printf("%s/%s [%u] != %s/%s [%u] at %s(%d)\n", \
-               #n1, #v1, (uint_t)s1->n1.out.v1, \
-               #n2, #v2, (uint_t)s2->n2.out.v2, \
+               #n1, #v1, (unsigned int)s1->n1.out.v1, \
+               #n2, #v2, (unsigned int)s2->n2.out.v2, \
               __FILE__, __LINE__); \
         ret = false; \
 }} while(0)
 
 #define VAL_APPROX_EQUAL(n1, v1, n2, v2) do {if (abs((int)(s1->n1.out.v1) - (int)(s2->n2.out.v2)) > 0.1*s1->n1.out.v1) { \
         printf("%s/%s [%u] != %s/%s [%u] at %s(%d)\n", \
-               #n1, #v1, (uint_t)s1->n1.out.v1, \
-               #n2, #v2, (uint_t)s2->n2.out.v2, \
+               #n1, #v1, (unsigned int)s1->n1.out.v1, \
+               #n2, #v2, (unsigned int)s2->n2.out.v2, \
               __FILE__, __LINE__); \
         ret = false; \
 }} while(0)
@@ -105,8 +105,8 @@ static union smb_fsinfo *find(const char *name)
 #define VAL_UNKNOWN(n1, v1) do {if (s1->n1.out.v1 != 0) { \
         printf("%s/%s non-zero unknown - %u (0x%x) at %s(%d)\n", \
                #n1, #v1, \
-              (uint_t)s1->n1.out.v1, \
-              (uint_t)s1->n1.out.v1, \
+              (unsigned int)s1->n1.out.v1, \
+              (unsigned int)s1->n1.out.v1, \
               __FILE__, __LINE__); \
         ret = false; \
 }} while(0)
index efdd04045196a05d0d174f0329f9b0d5c4646bd7..430f09be54e3eb09bb366d83758f0ed7a0f321de 100644 (file)
@@ -52,7 +52,7 @@
 /*
   setup a random buffer based on a seed
 */
-static void setup_buffer(uint8_t *buf, uint_t seed, int len)
+static void setup_buffer(uint8_t *buf, unsigned int seed, int len)
 {
        int i;
        srandom(seed);
@@ -62,7 +62,7 @@ static void setup_buffer(uint8_t *buf, uint_t seed, int len)
 /*
   check a random buffer based on a seed
 */
-static bool check_buffer(uint8_t *buf, uint_t seed, int len, int line)
+static bool check_buffer(uint8_t *buf, unsigned int seed, int len, int line)
 {
        int i;
        srandom(seed);
@@ -90,7 +90,7 @@ static bool test_read(struct torture_context *tctx, struct smbcli_state *cli)
        const int maxsize = 90000;
        const char *fname = BASEDIR "\\test.txt";
        const char *test_data = "TEST DATA";
-       uint_t seed = time(NULL);
+       unsigned int seed = time(NULL);
 
        buf = talloc_zero_array(tctx, uint8_t, maxsize);
 
@@ -222,7 +222,7 @@ static bool test_lockread(struct torture_context *tctx,
        const int maxsize = 90000;
        const char *fname = BASEDIR "\\test.txt";
        const char *test_data = "TEST DATA";
-       uint_t seed = time(NULL);
+       unsigned int seed = time(NULL);
 
        if (!cli->transport->negotiate.lockread_supported) {
                printf("Server does not support lockread - skipping\n");
@@ -372,7 +372,7 @@ static bool test_readx(struct torture_context *tctx, struct smbcli_state *cli)
        const int maxsize = 90000;
        const char *fname = BASEDIR "\\test.txt";
        const char *test_data = "TEST DATA";
-       uint_t seed = time(NULL);
+       unsigned int seed = time(NULL);
 
        buf = talloc_zero_array(tctx, uint8_t, maxsize);
 
@@ -655,7 +655,7 @@ static bool test_readbraw(struct torture_context *tctx,
        const int maxsize = 90000;
        const char *fname = BASEDIR "\\test.txt";
        const char *test_data = "TEST DATA";
-       uint_t seed = time(NULL);
+       unsigned int seed = time(NULL);
 
        if (!cli->transport->negotiate.readbraw_supported) {
                printf("Server does not support readbraw - skipping\n");
index 2e85a34761c87dccf9daa1545383d8b459dda64b..ca2254b634af71d166d35ca4609866184d2e3b1f 100644 (file)
@@ -162,8 +162,8 @@ bool torture_samba3_checkfsp(struct torture_context *torture)
 static NTSTATUS raw_smbcli_open(struct smbcli_tree *tree, const char *fname, int flags, int share_mode, int *fnum)
 {
         union smb_open open_parms;
-        uint_t openfn=0;
-        uint_t accessmode=0;
+        unsigned int openfn=0;
+        unsigned int accessmode=0;
         TALLOC_CTX *mem_ctx;
         NTSTATUS status;
 
@@ -225,8 +225,8 @@ static NTSTATUS raw_smbcli_open(struct smbcli_tree *tree, const char *fname, int
 static NTSTATUS raw_smbcli_t2open(struct smbcli_tree *tree, const char *fname, int flags, int share_mode, int *fnum)
 {
         union smb_open io;
-        uint_t openfn=0;
-        uint_t accessmode=0;
+        unsigned int openfn=0;
+        unsigned int accessmode=0;
         TALLOC_CTX *mem_ctx;
         NTSTATUS status;
 
index 1f8adfbe9a6ae950f74908c9ca028b75aa1fc3ef..8b540b2b613442b156d52422ff39e7d8063d891b 100644 (file)
@@ -144,7 +144,7 @@ torture_raw_sfileinfo_base(struct torture_context *torture, struct smbcli_state
        if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(status2) && finfo2.stype.out.field != value) { \
                printf("(%s) %s - %s/%s should be 0x%x - 0x%x\n", __location__, \
                       call_name, #stype, #field, \
-                      (uint_t)value, (uint_t)finfo2.stype.out.field); \
+                      (unsigned int)value, (unsigned int)finfo2.stype.out.field); \
                dump_all_info(torture, &finfo1); \
                ret = false; \
        }} while (0)
@@ -154,8 +154,8 @@ torture_raw_sfileinfo_base(struct torture_context *torture, struct smbcli_state
        if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(status2) && nt_time_to_unix(finfo2.stype.out.field) != value) { \
                printf("(%s) %s - %s/%s should be 0x%x - 0x%x\n", __location__, \
                        call_name, #stype, #field, \
-                       (uint_t)value, \
-                       (uint_t)nt_time_to_unix(finfo2.stype.out.field)); \
+                       (unsigned int)value, \
+                       (unsigned int)nt_time_to_unix(finfo2.stype.out.field)); \
                printf("\t%s", timestring(torture, value)); \
                printf("\t%s\n", nt_time_string(torture, finfo2.stype.out.field)); \
                dump_all_info(torture, &finfo1); \
index ff82dc19d8a25d656f04f227f1442adf20b3eeeb..a1fde16611cf33f8e152ff3a89145352ff92656f 100644 (file)
@@ -66,7 +66,7 @@
 /*
   setup a random buffer based on a seed
 */
-static void setup_buffer(uint8_t *buf, uint_t seed, int len)
+static void setup_buffer(uint8_t *buf, unsigned int seed, int len)
 {
        int i;
        srandom(seed);
@@ -76,7 +76,7 @@ static void setup_buffer(uint8_t *buf, uint_t seed, int len)
 /*
   check a random buffer based on a seed
 */
-static bool check_buffer(uint8_t *buf, uint_t seed, int len, const char *location)
+static bool check_buffer(uint8_t *buf, unsigned int seed, int len, const char *location)
 {
        int i;
        srandom(seed);
@@ -104,7 +104,7 @@ static bool test_write(struct torture_context *tctx,
        uint8_t *buf;
        const int maxsize = 90000;
        const char *fname = BASEDIR "\\test.txt";
-       uint_t seed = time(NULL);
+       unsigned int seed = time(NULL);
        union smb_fileinfo finfo;
 
        buf = talloc_zero_array(tctx, uint8_t, maxsize);
@@ -232,7 +232,7 @@ static bool test_writex(struct torture_context *tctx,
        uint8_t *buf;
        const int maxsize = 90000;
        const char *fname = BASEDIR "\\test.txt";
-       uint_t seed = time(NULL);
+       unsigned int seed = time(NULL);
        union smb_fileinfo finfo;
        int max_bits=63;
 
@@ -420,7 +420,7 @@ static bool test_writeunlock(struct torture_context *tctx,
        uint8_t *buf;
        const int maxsize = 90000;
        const char *fname = BASEDIR "\\test.txt";
-       uint_t seed = time(NULL);
+       unsigned int seed = time(NULL);
        union smb_fileinfo finfo;
 
        buf = talloc_zero_array(tctx, uint8_t, maxsize);
@@ -568,7 +568,7 @@ static bool test_writeclose(struct torture_context *tctx,
        uint8_t *buf;
        const int maxsize = 90000;
        const char *fname = BASEDIR "\\test.txt";
-       uint_t seed = time(NULL);
+       unsigned int seed = time(NULL);
        union smb_fileinfo finfo;
 
        buf = talloc_zero_array(tctx, uint8_t, maxsize);
index 4fd2694926b88f48272ba320e39a60d185bac746..043b386efd8074d54af768d28eb6084f564e654a 100644 (file)
@@ -268,19 +268,19 @@ static bool test_sleep(struct torture_context *tctx,
                                                        talloc_asprintf(tctx, "TestSleep(%d) failed", i));
                                torture_assert(tctx, r[i].out.result == r[i].in.seconds,
                                        talloc_asprintf(tctx, "Failed - Asked to sleep for %u seconds (server replied with %u seconds and the reply takes only %u seconds)", 
-                                               r[i].out.result, r[i].in.seconds, (uint_t)diff[i].tv_sec));
+                                               r[i].out.result, r[i].in.seconds, (unsigned int)diff[i].tv_sec));
                                torture_assert(tctx, r[i].out.result <= rounded_tdiff, 
                                        talloc_asprintf(tctx, "Failed - Slept for %u seconds (but reply takes only %u.%06u seconds)", 
-                                               r[i].out.result, (uint_t)diff[i].tv_sec, (uint_t)diff[i].tv_usec));
+                                               r[i].out.result, (unsigned int)diff[i].tv_sec, (unsigned int)diff[i].tv_usec));
                                if (r[i].out.result+1 == rounded_tdiff) {
                                        torture_comment(tctx, "Slept for %u seconds (but reply takes %u.%06u seconds - busy server?)\n", 
-                                                       r[i].out.result, (uint_t)diff[i].tv_sec, (uint_t)diff[i].tv_usec);
+                                                       r[i].out.result, (unsigned int)diff[i].tv_sec, (unsigned int)diff[i].tv_usec);
                                } else if (r[i].out.result == rounded_tdiff) {
                                        torture_comment(tctx, "Slept for %u seconds (reply takes %u.%06u seconds - ok)\n", 
-                                                       r[i].out.result, (uint_t)diff[i].tv_sec, (uint_t)diff[i].tv_usec);
+                                                       r[i].out.result, (unsigned int)diff[i].tv_sec, (unsigned int)diff[i].tv_usec);
                                } else {
                                                torture_comment(tctx, "(Failed) - Not async - Slept for %u seconds (but reply takes %u.%06u seconds)", 
-                                                       r[i].out.result, (uint_t)diff[i].tv_sec, (uint_t)diff[i].tv_usec);
+                                                       r[i].out.result, (unsigned int)diff[i].tv_sec, (unsigned int)diff[i].tv_usec);
                                        /* TODO: let the test fail here, when we support async rpc on ncacn_np */
                                }
                        }
index cff42a2aab698485960a1a3fa31e622123bf7002..22fb28f076e8b3bcf1062f06c1ba7cf42c76a3e4 100644 (file)
@@ -1219,8 +1219,8 @@ static bool test_CreateSecret(struct dcerpc_pipe *p,
        const int LOCAL = 0;
        const int GLOBAL = 1;
 
-       secname[LOCAL] = talloc_asprintf(tctx, "torturesecret-%u", (uint_t)random());
-       secname[GLOBAL] = talloc_asprintf(tctx, "G$torturesecret-%u", (uint_t)random());
+       secname[LOCAL] = talloc_asprintf(tctx, "torturesecret-%u", (unsigned int)random());
+       secname[GLOBAL] = talloc_asprintf(tctx, "G$torturesecret-%u", (unsigned int)random());
 
        for (i=0; i< 2; i++) {
                torture_comment(tctx, "\nTesting CreateSecret of %s\n", secname[i]);
index d0a2009fd1071a8c3012a079605bbb54701444f2..a0bd40124db3d2f14fbc37bd3a0cf6cb3281105c 100644 (file)
@@ -52,7 +52,7 @@ static bool test_CreateSecret_basic(struct dcerpc_pipe *p,
        char *secret2;
        char *secname;
 
-       secname = talloc_asprintf(tctx, "torturesecret-%u", (uint_t)random());
+       secname = talloc_asprintf(tctx, "torturesecret-%u", (unsigned int)random());
 
        torture_comment(tctx, "Testing CreateSecret of %s\n", secname);
                
index 4af6900a810cc02c7ebd7473ffb33be77d0a3a52..8c3cb7633602a27d93946dbd473f2854a8e392c5 100644 (file)
@@ -108,7 +108,7 @@ static bool test_find(struct torture_context *tctx,
        struct file_elem files[NFILES] = {};
        NTSTATUS status;
        bool ret = true;
-       uint_t count;
+       unsigned int count;
        int i, j, file_count = 0;
 
        status = populate_tree(tctx, mem_ctx, tree, files, NFILES, &h);
@@ -193,7 +193,7 @@ static bool test_fixed(struct torture_context *tctx,
        struct file_elem files[NFILES] = {};
        NTSTATUS status;
        bool ret = true;
-       uint_t count;
+       unsigned int count;
        int i;
 
        status = populate_tree(tctx, mem_ctx, tree, files, NFILES, &h);
@@ -360,7 +360,7 @@ static union smb_search_data *find(const char *name)
 static bool fill_level_data(TALLOC_CTX *mem_ctx,
                            union smb_search_data *data,
                            union smb_search_data *d,
-                           uint_t count,
+                           unsigned int count,
                            uint8_t level,
                            enum smb_search_data_level data_level)
 {
@@ -385,7 +385,7 @@ NTSTATUS torture_single_file_search(struct smb2_tree *tree,
                                    enum smb_search_data_level data_level,
                                    int idx,
                                    union smb_search_data *d,
-                                   uint_t *count,
+                                   unsigned int *count,
                                    struct smb2_handle *h)
 {
        struct smb2_find f;
@@ -416,7 +416,7 @@ static bool test_one_file(struct torture_context *tctx,
        const char *fname =  "torture_search.txt";
        NTSTATUS status;
        int i;
-       uint_t count;
+       unsigned int count;
        union smb_fileinfo all_info2, alt_info, internal_info;
        union smb_search_data *s;
        union smb_search_data d;
@@ -671,7 +671,7 @@ static NTSTATUS multiple_smb2_search(struct smb2_tree *tree,
 {
        struct smb2_find f;
        bool ret = true;
-       uint_t count = 0;
+       unsigned int count = 0;
        union smb_search_data *d;
        NTSTATUS status;
        struct multiple_result *result = (struct multiple_result *)data;
@@ -895,7 +895,7 @@ static bool test_modify_search(struct torture_context *tctx,
        NTSTATUS status;
        bool ret = true;
        int i;
-       uint_t count;
+       unsigned int count;
 
        smb2_deltree(tree, DNAME);
 
index 38642a673d2195ec57158e6ee2f34559e809dbcf..04b64fd6321e31384989cca7cb24ceadbaa5133d 100644 (file)
@@ -117,7 +117,7 @@ bool torture_smb2_setinfo(struct torture_context *tctx)
        if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(status2) && finfo2.stype.out.field != value) { \
                torture_result(tctx, TORTURE_FAIL, "(%s) %s - %s/%s should be 0x%x - 0x%x\n", __location__, \
                       call_name, #stype, #field, \
-                      (uint_t)value, (uint_t)finfo2.stype.out.field); \
+                      (unsigned int)value, (unsigned int)finfo2.stype.out.field); \
                torture_smb2_all_info(tree, handle); \
                ret = false; \
                goto done; \
@@ -128,8 +128,8 @@ bool torture_smb2_setinfo(struct torture_context *tctx)
        if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(status2) && nt_time_to_unix(finfo2.stype.out.field) != value) { \
                torture_result(tctx, TORTURE_FAIL, "(%s) %s - %s/%s should be 0x%x - 0x%x\n", __location__, \
                        call_name, #stype, #field, \
-                       (uint_t)value, \
-                       (uint_t)nt_time_to_unix(finfo2.stype.out.field)); \
+                       (unsigned int)value, \
+                       (unsigned int)nt_time_to_unix(finfo2.stype.out.field)); \
                torture_warning(tctx, "\t%s", timestring(tctx, value)); \
                torture_warning(tctx, "\t%s\n", nt_time_string(tctx, finfo2.stype.out.field)); \
                torture_smb2_all_info(tree, handle); \