1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-30 19:42:05 +03:00

Convert all uint32/16/8 to _t in a couple of include files.

Signed-off-by: Richard Sharpe <rsharpe@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>

Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Tue May 12 04:22:55 CEST 2015 on sn-devel-104
This commit is contained in:
Richard Sharpe
2015-05-09 15:35:21 -07:00
committed by Jeremy Allison
parent f893a4a354
commit bc62dfa493
2 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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;