1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-22 07:33:16 +03:00

r890: convert samba4 to use [u]int8_t instead of [u]int8

metze
This commit is contained in:
Stefan Metzmacher
2004-05-25 17:50:17 +00:00
committed by Gerald (Jerry) Carter
parent af6f1f8a01
commit 2986c5f08c
65 changed files with 186 additions and 180 deletions

View File

@@ -26,7 +26,7 @@
allocate a new rpc handle
*/
struct dcesrv_handle *dcesrv_handle_new(struct dcesrv_connection *dce_conn,
uint8 handle_type)
uint8_t handle_type)
{
TALLOC_CTX *mem_ctx;
struct dcesrv_handle *h;
@@ -72,7 +72,7 @@ void dcesrv_handle_destroy(struct dcesrv_connection *dce_conn,
*/
struct dcesrv_handle *dcesrv_handle_fetch(struct dcesrv_connection *dce_conn,
struct policy_handle *p,
uint8 handle_type)
uint8_t handle_type)
{
struct dcesrv_handle *h;