I'm pretty sure these uint32's should be uid_t's. Can the passdb guys
authorTim Potter <tpot@samba.org>
Tue, 27 May 2003 07:21:57 +0000 (07:21 +0000)
committerTim Potter <tpot@samba.org>
Tue, 27 May 2003 07:21:57 +0000 (07:21 +0000)
please check this?
(This used to be commit af4b1f869a7dca0d24391fb2cefef7e05cca2c04)

source3/passdb/pdb_smbpasswd.c
source3/passdb/pdb_tdb.c

index 1237f911a3eaf30a929c8830963e82d53996974c..7095e8a452977c8bbcc8dcc60bf08771294edac4 100644 (file)
@@ -64,8 +64,8 @@ struct smbpasswd_privates
 
        BOOL permit_non_unix_accounts;
 
-       uint32 low_nua_userid; 
-       uint32 high_nua_userid; 
+       uid_t low_nua_userid; 
+       uid_t high_nua_userid; 
 
 };
 
index 93fa4e1886bb0137a8bfdcb97a92d25cf7e56e3b..7f8c2a26f76f74a9b5df334b66a29d96a671070c 100644 (file)
@@ -916,7 +916,7 @@ NTSTATUS pdb_init_tdbsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, con
 {
        NTSTATUS nt_status;
        struct tdbsam_privates *tdb_state;
-       uint32 low_nua_uid, high_nua_uid;
+       uid_t low_nua_uid, high_nua_uid;
 
        if (!NT_STATUS_IS_OK(nt_status = make_pdb_methods(pdb_context->mem_ctx, pdb_method))) {
                return nt_status;