diff options
author | Jeremy Allison <jra@samba.org> | 2006-01-04 12:48:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:06:01 -0500 |
commit | 2b509f470d616c8df69e72ec04e25114d22af50f (patch) | |
tree | e6d98f60d028a0ec661ee7ac36ccf5ca94e5ab7b /source3/smbd | |
parent | d64db1c5095860f2b9a8c95c1208acb3bf900bfe (diff) | |
download | samba-2b509f470d616c8df69e72ec04e25114d22af50f.tar.gz samba-2b509f470d616c8df69e72ec04e25114d22af50f.tar.bz2 samba-2b509f470d616c8df69e72ec04e25114d22af50f.zip |
r12713: Remove use of uint8_t -> uint8.
Jeremy.
(This used to be commit 4473ac4ef9c86574fc49b1e67089b59b14b6d10d)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/oplock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/oplock.c b/source3/smbd/oplock.c index 54e7da11af..f788fc9e2e 100644 --- a/source3/smbd/oplock.c +++ b/source3/smbd/oplock.c @@ -252,7 +252,7 @@ int setup_oplock_select_set( fd_set *fds) ****************************************************************************/ static char *new_break_smb_message(TALLOC_CTX *mem_ctx, - files_struct *fsp, uint8_t cmd) + files_struct *fsp, uint8 cmd) { char *result = TALLOC_ARRAY(mem_ctx, char, smb_size + 8*2 + 0); |