1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-12 04:23:49 +03:00

r889: convert samba4 to use [u]int16_t instead of [u]int16

metze
This commit is contained in:
Stefan Metzmacher
2004-05-25 17:24:24 +00:00
committed by Gerald (Jerry) Carter
parent f3b1d3bdc7
commit af6f1f8a01
97 changed files with 549 additions and 554 deletions

View File

@@ -41,7 +41,7 @@
typedef struct file_info
{
uint64_t size;
uint16 mode;
uint16_t mode;
uid_t uid;
gid_t gid;
/* these times are normally kept in GMT */
@@ -54,8 +54,8 @@ typedef struct file_info
struct print_job_info
{
uint16 id;
uint16 priority;
uint16_t id;
uint16_t priority;
size_t size;
fstring user;
fstring name;
@@ -104,8 +104,8 @@ struct cli_client
int number_members;
BOOL use_dfs; /* True if client should support Dfs */
int connection_flags; /* see CLI_FULL_CONN.. below */
uint16 max_xmit_frag;
uint16 max_recv_frag;
uint16_t max_xmit_frag;
uint16_t max_recv_frag;
struct cli_state *cli[DFS_MAX_CLUSTER_SIZE];
};