From f88bf54c7f6d1c2ef833047eb8327953c304b5ff Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 25 May 2004 17:24:24 +0000 Subject: r889: convert samba4 to use [u]int16_t instead of [u]int16 metze (This used to be commit af6f1f8a01bebbecd99bc8c066519e89966e65e3) --- source4/libcli/clitrans2.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/libcli/clitrans2.c') diff --git a/source4/libcli/clitrans2.c b/source4/libcli/clitrans2.c index dc8c2cdfec..a83660685b 100644 --- a/source4/libcli/clitrans2.c +++ b/source4/libcli/clitrans2.c @@ -25,7 +25,7 @@ send a qpathinfo call ****************************************************************************/ NTSTATUS cli_qpathinfo(struct cli_tree *tree, const char *fname, time_t *c_time, time_t *a_time, time_t *m_time, - size_t *size, uint16 *mode) + size_t *size, uint16_t *mode) { union smb_fileinfo parms; TALLOC_CTX *mem_ctx; @@ -66,7 +66,7 @@ send a qpathinfo call with the SMB_QUERY_FILE_ALL_INFO info level ****************************************************************************/ NTSTATUS cli_qpathinfo2(struct cli_tree *tree, const char *fname, time_t *c_time, time_t *a_time, time_t *m_time, - time_t *w_time, size_t *size, uint16 *mode, + time_t *w_time, size_t *size, uint16_t *mode, SMB_INO_T *ino) { union smb_fileinfo parms; @@ -141,7 +141,7 @@ NTSTATUS cli_qfilename(struct cli_tree *tree, int fnum, const char **name) send a qfileinfo call ****************************************************************************/ NTSTATUS cli_qfileinfo(struct cli_tree *tree, int fnum, - uint16 *mode, size_t *size, + uint16_t *mode, size_t *size, time_t *c_time, time_t *a_time, time_t *m_time, time_t *w_time, SMB_INO_T *ino) { -- cgit