summaryrefslogtreecommitdiffstats
path: root/source/include
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-03-11 00:51:54 +0000
committerJeremy Allison <jra@samba.org>2001-03-11 00:51:54 +0000
commit31e0ce310ec38b3a3a05b344d6450d442c6be471 (patch)
tree1e651409b18864814fb9e3a5853ffdd326bd0aa6 /source/include
parent96bcfdcded7202a7bced58fae6534f1fcd4c4e36 (diff)
downloadsamba-31e0ce310ec38b3a3a05b344d6450d442c6be471.tar.gz
samba-31e0ce310ec38b3a3a05b344d6450d442c6be471.tar.xz
samba-31e0ce310ec38b3a3a05b344d6450d442c6be471.zip
Remove "BYTE" - we already have uint8 - don't need more conflicts with
system header files... Jeremy.
Diffstat (limited to 'source/include')
-rw-r--r--source/include/proto.h8
-rw-r--r--source/include/smb.h2
2 files changed, 4 insertions, 6 deletions
diff --git a/source/include/proto.h b/source/include/proto.h
index 6f37f8ffc98..c1271e7d277 100644
--- a/source/include/proto.h
+++ b/source/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/source/include/smb.h b/source/include/smb.h
index d16c7661fec..9b2d0ee5f98 100644
--- a/source/include/smb.h
+++ b/source/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 */