Convert all uint32/16/8 to _t in a couple of include files.
authorRichard Sharpe <rsharpe@samba.org>
Sat, 9 May 2015 22:35:21 +0000 (15:35 -0700)
committerJeremy Allison <jra@samba.org>
Tue, 12 May 2015 02:22:55 +0000 (04:22 +0200)
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

source3/nmbd/nmbd_proto.h
source3/services/services.h

index 4bcf100d5702154f6a4401ad156e800d9647971d..23b44e2d56a8f2bb3399e7bbebb6ac19f4ef6439 100644 (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);
 
index bbb1d60f16880fb7a2d2ed75c177ebe64a1a6ee0..f65eed1df6d698deacd79d1a41aa25e72dff2093 100644 (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;