From 24ae7657011929fd3529caa909f3afe866186cd2 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 18 Sep 1998 02:26:36 +0000 Subject: fixed a usage of off_t that should have been SMB_OFF_T --- source/smbd/nttrans.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/smbd/nttrans.c b/source/smbd/nttrans.c index ca977c39dcc..ee3385f152f 100644 --- a/source/smbd/nttrans.c +++ b/source/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; -- cgit