diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-09-18 02:26:36 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-09-18 02:26:36 +0000 |
commit | 55c492fba1da31bc82de5bba5e19dec54b18e2ce (patch) | |
tree | 6be35964b1c969d229bd2c74682c736b3215df07 | |
parent | 8d6b713c5d51bf9367c785239dea4ba8d11ae958 (diff) | |
download | samba-55c492fba1da31bc82de5bba5e19dec54b18e2ce.tar.gz samba-55c492fba1da31bc82de5bba5e19dec54b18e2ce.tar.bz2 samba-55c492fba1da31bc82de5bba5e19dec54b18e2ce.zip |
fixed a usage of off_t that should have been SMB_OFF_T
(This used to be commit 24ae7657011929fd3529caa909f3afe866186cd2)
-rw-r--r-- | source3/smbd/nttrans.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index ca977c39dc..ee3385f152 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -713,7 +713,7 @@ static int call_nt_transact_create(connection_struct *conn, mode_t unixmode; int pnum = -1; int fmode=0,rmode=0; - off_t file_len = 0; + SMB_OFF_T file_len = 0; SMB_STRUCT_STAT sbuf; int smb_action = 0; BOOL bad_path = False; |