mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
fix quota build on non-64bit systems
(This used to be commit 227ac95338
)
This commit is contained in:
parent
8dbe3697f3
commit
7f256452c1
@ -2155,7 +2155,7 @@ static int call_nt_transact_set_user_quota(connection_struct *conn,
|
||||
#else /* LARGE_SMB_OFF_T */
|
||||
if ((IVAL(pdata,20) != 0)&&
|
||||
((qt.usedspace != 0xFFFFFFFF)||
|
||||
(IVAL(pdata,20)!=0xFFFFFFFF)))) {
|
||||
(IVAL(pdata,20)!=0xFFFFFFFF))) {
|
||||
/* more than 32 bits? */
|
||||
return ERROR_DOS(ERRDOS,ERRunknownlevel);
|
||||
}
|
||||
@ -2168,7 +2168,7 @@ static int call_nt_transact_set_user_quota(connection_struct *conn,
|
||||
#else /* LARGE_SMB_OFF_T */
|
||||
if ((IVAL(pdata,28) != 0)&&
|
||||
((qt.softlim != 0xFFFFFFFF)||
|
||||
(IVAL(pdata,28)!=0xFFFFFFFF)))) {
|
||||
(IVAL(pdata,28)!=0xFFFFFFFF))) {
|
||||
/* more than 32 bits? */
|
||||
return ERROR_DOS(ERRDOS,ERRunknownlevel);
|
||||
}
|
||||
@ -2181,7 +2181,7 @@ static int call_nt_transact_set_user_quota(connection_struct *conn,
|
||||
#else /* LARGE_SMB_OFF_T */
|
||||
if ((IVAL(pdata,36) != 0)&&
|
||||
((qt.hardlim != 0xFFFFFFFF)||
|
||||
(IVAL(pdata,36)!=0xFFFFFFFF)))) {
|
||||
(IVAL(pdata,36)!=0xFFFFFFFF))) {
|
||||
/* more than 32 bits? */
|
||||
return ERROR_DOS(ERRDOS,ERRunknownlevel);
|
||||
}
|
||||
|
@ -1657,7 +1657,7 @@ static int call_trans2setfsinfo(connection_struct *conn,
|
||||
#else /* LARGE_SMB_OFF_T */
|
||||
if ((IVAL(pdata,28) != 0)&&
|
||||
((quotas.softlim != 0xFFFFFFFF)||
|
||||
(IVAL(pdata,28)!=0xFFFFFFFF)))) {
|
||||
(IVAL(pdata,28)!=0xFFFFFFFF))) {
|
||||
/* more than 32 bits? */
|
||||
return ERROR_DOS(ERRDOS,ERRunknownlevel);
|
||||
}
|
||||
@ -1670,7 +1670,7 @@ static int call_trans2setfsinfo(connection_struct *conn,
|
||||
#else /* LARGE_SMB_OFF_T */
|
||||
if ((IVAL(pdata,36) != 0)&&
|
||||
((quotas.hardlim != 0xFFFFFFFF)||
|
||||
(IVAL(pdata,36)!=0xFFFFFFFF)))) {
|
||||
(IVAL(pdata,36)!=0xFFFFFFFF))) {
|
||||
/* more than 32 bits? */
|
||||
return ERROR_DOS(ERRDOS,ERRunknownlevel);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user