diff options
author | Jeremy Allison <jra@samba.org> | 2001-03-11 00:51:54 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-03-11 00:51:54 +0000 |
commit | a2e5dbb1120e726ba80b00a159dad1a1ca2e3a18 (patch) | |
tree | 86036fde69c9bb29a22d7250b78b80b1fa1b2e8e /source3/include | |
parent | c4a84783a672734f695defbac25733e5cbf29430 (diff) | |
download | samba-a2e5dbb1120e726ba80b00a159dad1a1ca2e3a18.tar.gz samba-a2e5dbb1120e726ba80b00a159dad1a1ca2e3a18.tar.bz2 samba-a2e5dbb1120e726ba80b00a159dad1a1ca2e3a18.zip |
Remove "BYTE" - we already have uint8 - don't need more conflicts with
system header files...
Jeremy.
(This used to be commit 31e0ce310ec38b3a3a05b344d6450d442c6be471)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 8 | ||||
-rw-r--r-- | source3/include/smb.h | 2 |
2 files changed, 4 insertions, 6 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 6f37f8ffc9..c1271e7d27 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1857,8 +1857,8 @@ time_t pdb_get_pass_must_change_time (SAM_ACCOUNT *sampass); uint16 pdb_get_logon_divs (SAM_ACCOUNT *sampass); uint32 pdb_get_hours_len (SAM_ACCOUNT *sampass); uint8* pdb_get_hours (SAM_ACCOUNT *sampass); -BYTE* pdb_get_nt_passwd (SAM_ACCOUNT *sampass); -BYTE* pdb_get_lanman_passwd (SAM_ACCOUNT *sampass); +uint8* pdb_get_nt_passwd (SAM_ACCOUNT *sampass); +uint8* pdb_get_lanman_passwd (SAM_ACCOUNT *sampass); uint32 pdb_get_user_rid (SAM_ACCOUNT *sampass); uint32 pdb_get_group_rid (SAM_ACCOUNT *sampass); uid_t pdb_get_uid (SAM_ACCOUNT *sampass); @@ -1902,8 +1902,8 @@ BOOL pdb_set_homedir (SAM_ACCOUNT *sampass, char *homedir); BOOL pdb_set_acct_desc (SAM_ACCOUNT *sampass, char *acct_desc); BOOL pdb_set_workstations (SAM_ACCOUNT *sampass, char *workstations); BOOL pdb_set_munged_dial (SAM_ACCOUNT *sampass, char *munged_dial); -BOOL pdb_set_nt_passwd (SAM_ACCOUNT *sampass, BYTE *pwd); -BOOL pdb_set_lanman_passwd (SAM_ACCOUNT *sampass, BYTE *pwd); +BOOL pdb_set_nt_passwd (SAM_ACCOUNT *sampass, uint8 *pwd); +BOOL pdb_set_lanman_passwd (SAM_ACCOUNT *sampass, uint8 *pwd); /*The following definitions come from passdb/pdb_smbpasswd.c */ diff --git a/source3/include/smb.h b/source3/include/smb.h index d16c7661fe..9b2d0ee5f9 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -36,8 +36,6 @@ #define True (1) #define Auto (2) -typedef unsigned char BYTE; - #ifndef _BOOL typedef int BOOL; #define _BOOL /* So we don't typedef BOOL again in vfs.h */ |