From bc62dfa493df8a554829900d6bd9686f0ca028b5 Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Sat, 9 May 2015 15:35:21 -0700 Subject: [PATCH] Convert all uint32/16/8 to _t in a couple of include files. Signed-off-by: Richard Sharpe Reviewed-by: Jeremy Allison Autobuild-User(master): Jeremy Allison Autobuild-Date(master): Tue May 12 04:22:55 CEST 2015 on sn-devel-104 --- source3/nmbd/nmbd_proto.h | 2 +- source3/services/services.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source3/nmbd/nmbd_proto.h b/source3/nmbd/nmbd_proto.h index 4bcf100d570..23b44e2d56a 100644 --- a/source3/nmbd/nmbd_proto.h +++ b/source3/nmbd/nmbd_proto.h @@ -314,7 +314,7 @@ struct server_record *create_server_on_workgroup(struct work_record *work, int ttl, const char *comment); void update_server_ttl(struct server_record *servrec, int ttl); void expire_servers(struct work_record *work, time_t t); -void write_browse_list_entry(XFILE *fp, const char *name, uint32 rec_type, +void write_browse_list_entry(XFILE *fp, const char *name, uint32_t rec_type, const char *local_master_browser_name, const char *description); void write_browse_list(time_t t, bool force_write); diff --git a/source3/services/services.h b/source3/services/services.h index bbb1d60f168..f65eed1df6d 100644 --- a/source3/services/services.h +++ b/source3/services/services.h @@ -40,9 +40,9 @@ typedef struct { /* structure to store the service handle information */ typedef struct _ServiceInfo { - uint8 type; + uint8_t type; char *name; - uint32 access_granted; + uint32_t access_granted; SERVICE_CONTROL_OPS *ops; } SERVICE_INFO; -- 2.34.1