diff options
| author | Jeremy Allison <jra@samba.org> | 1998-08-31 20:20:54 +0000 | 
|---|---|---|
| committer | Jeremy Allison <jra@samba.org> | 1998-08-31 20:20:54 +0000 | 
| commit | 693480af8bb2d3e83566af9463ca427f47a879da (patch) | |
| tree | cb7070685621c8b4ffd651c8108e1450bf3272d9 /source3/smbd/reply.c | |
| parent | d2e0d0f73bfce64665feb386e2cc4032258ad437 (diff) | |
| download | samba-693480af8bb2d3e83566af9463ca427f47a879da.tar.gz samba-693480af8bb2d3e83566af9463ca427f47a879da.tar.bz2 samba-693480af8bb2d3e83566af9463ca427f47a879da.zip | |
configure.in, configure: include/config.h.in: Added stropts and poll.
include/smb.h: Moved old typedefs of uint8 etc. into include/includes.h where
               all the other defines live (changed them from typedefs to
               defines).
Other changes : changed from using uint32 to SMB_DEV_T and SMB_INO_T
in preparation for moving to size independed (ie. 64 bit clean) device
and inode access. Stat call wrapper comes next :-).
Jeremy.
(This used to be commit 3d9ec96de5e04e83abafe9c5d980bd39eee856ea)
Diffstat (limited to 'source3/smbd/reply.c')
| -rw-r--r-- | source3/smbd/reply.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 3052bd730c..e30c31776c 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -3544,8 +3544,8 @@ int reply_lockingX(connection_struct *conn, char *inbuf,char *outbuf,int length,    if ((locktype & LOCKING_ANDX_OPLOCK_RELEASE))    {      int token; -    uint32 dev = fsp->fd_ptr->dev; -    uint32 inode = fsp->fd_ptr->inode; +    SMB_DEV_T dev = fsp->fd_ptr->dev; +    SMB_INO_T inode = fsp->fd_ptr->inode;      DEBUG(5,("reply_lockingX: oplock break reply from client for fnum = %d\n",                fsp->fnum)); | 
