mirror of
https://github.com/samba-team/samba.git
synced 2025-02-04 17:47:26 +03:00
Fix some nonempty blank lines
This commit is contained in:
parent
1a228b442e
commit
41ee314438
@ -2,17 +2,17 @@
|
||||
Unix SMB/CIFS implementation.
|
||||
client quota functions
|
||||
Copyright (C) Stefan (metze) Metzmacher 2003
|
||||
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
@ -25,7 +25,7 @@ bool cli_get_quota_handle(struct cli_state *cli, int *quota_fnum)
|
||||
0x00000016, DESIRED_ACCESS_PIPE,
|
||||
0x00000000, FILE_SHARE_READ|FILE_SHARE_WRITE,
|
||||
FILE_OPEN, 0x00000000, 0x03);
|
||||
|
||||
|
||||
if (*quota_fnum == (-1)) {
|
||||
return False;
|
||||
}
|
||||
@ -37,7 +37,7 @@ void free_ntquota_list(SMB_NTQUOTA_LIST **qt_list)
|
||||
{
|
||||
if (!qt_list)
|
||||
return;
|
||||
|
||||
|
||||
if ((*qt_list)->mem_ctx)
|
||||
talloc_destroy((*qt_list)->mem_ctx);
|
||||
|
||||
@ -60,7 +60,7 @@ static bool parse_user_quota_record(const char *rdata, unsigned int rdata_count,
|
||||
if (rdata_count < 40) {
|
||||
return False;
|
||||
}
|
||||
|
||||
|
||||
/* offset to next quota record.
|
||||
* 4 bytes IVAL(rdata,0)
|
||||
* unused here...
|
||||
@ -116,7 +116,7 @@ static bool parse_user_quota_record(const char *rdata, unsigned int rdata_count,
|
||||
return False;
|
||||
}
|
||||
#endif /* LARGE_SMB_OFF_T */
|
||||
|
||||
|
||||
sid_parse(rdata+40,sid_len,&qt.sid);
|
||||
|
||||
qt.qtype = SMB_USER_QUOTA_TYPE;
|
||||
@ -149,13 +149,13 @@ bool cli_get_user_quota(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_STRUC
|
||||
SIVAL(params, 4,0x00000024);
|
||||
SIVAL(params, 8,0x00000000);
|
||||
SIVAL(params,12,0x00000024);
|
||||
|
||||
|
||||
sid_len = ndr_size_dom_sid(&pqt->sid, 0);
|
||||
data_len = sid_len+8;
|
||||
SIVAL(data, 0, 0x00000000);
|
||||
SIVAL(data, 4, sid_len);
|
||||
sid_linearize(data+8, sid_len, &pqt->sid);
|
||||
|
||||
|
||||
if (!cli_send_nt_trans(cli,
|
||||
NT_TRANSACT_GET_USER_QUOTA,
|
||||
0,
|
||||
@ -204,7 +204,7 @@ bool cli_set_user_quota(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_STRUC
|
||||
unsigned int rparam_count=0, rdata_count=0;
|
||||
unsigned int sid_len;
|
||||
memset(data,'\0',112);
|
||||
|
||||
|
||||
if (!cli||!pqt) {
|
||||
smb_panic("cli_set_user_quota() called with NULL Pointer!");
|
||||
}
|
||||
@ -221,7 +221,7 @@ bool cli_set_user_quota(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_STRUC
|
||||
SBIG_UINT(data,24,pqt->softlim);
|
||||
SBIG_UINT(data,32,pqt->hardlim);
|
||||
sid_linearize(data+40, sid_len, &pqt->sid);
|
||||
|
||||
|
||||
if (!cli_send_nt_trans(cli,
|
||||
NT_TRANSACT_SET_USER_QUOTA,
|
||||
0,
|
||||
@ -278,7 +278,7 @@ bool cli_list_user_quota(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_LIST
|
||||
SIVAL(params, 4,0x00000000);
|
||||
SIVAL(params, 8,0x00000000);
|
||||
SIVAL(params,12,0x00000000);
|
||||
|
||||
|
||||
if (!cli_send_nt_trans(cli,
|
||||
NT_TRANSACT_GET_USER_QUOTA,
|
||||
0,
|
||||
@ -353,7 +353,7 @@ bool cli_list_user_quota(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_LIST
|
||||
DEBUG(1,("Failed to send NT_TRANSACT_GET_USER_QUOTA\n"));
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
||||
SAFE_FREE(rparam);
|
||||
SAFE_FREE(rdata);
|
||||
if (!cli_receive_nt_trans(cli,
|
||||
@ -369,7 +369,7 @@ bool cli_list_user_quota(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_LIST
|
||||
} else {
|
||||
ret = True;
|
||||
}
|
||||
|
||||
|
||||
if (rdata_count == 0) {
|
||||
break;
|
||||
}
|
||||
@ -389,26 +389,26 @@ bool cli_list_user_quota(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_LIST
|
||||
talloc_destroy(mem_ctx);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
||||
if ((tmp_list_ent->quotas=TALLOC_ZERO_P(mem_ctx,SMB_NTQUOTA_STRUCT))==NULL) {
|
||||
DEBUG(0,("TALLOC_ZERO() failed\n"));
|
||||
talloc_destroy(mem_ctx);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
||||
memcpy(tmp_list_ent->quotas,&qt,sizeof(qt));
|
||||
tmp_list_ent->mem_ctx = mem_ctx;
|
||||
|
||||
|
||||
DLIST_ADD((*pqt_list),tmp_list_ent);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
ret = True;
|
||||
cleanup:
|
||||
SAFE_FREE(rparam);
|
||||
SAFE_FREE(rdata);
|
||||
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -427,9 +427,9 @@ bool cli_get_fs_quota_info(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_ST
|
||||
}
|
||||
|
||||
setup = TRANSACT2_QFSINFO;
|
||||
|
||||
|
||||
SSVAL(param,0,SMB_FS_QUOTA_INFORMATION);
|
||||
|
||||
|
||||
if (!cli_send_trans(cli, SMBtrans2,
|
||||
NULL,
|
||||
0, 0,
|
||||
@ -438,7 +438,7 @@ bool cli_get_fs_quota_info(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_ST
|
||||
NULL, 0, 560)) {
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
||||
if (!cli_receive_trans(cli, SMBtrans2,
|
||||
&rparam, &rparam_count,
|
||||
&rdata, &rdata_count)) {
|
||||
@ -455,7 +455,7 @@ bool cli_get_fs_quota_info(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_ST
|
||||
if (rdata_count < 48) {
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
||||
/* unknown_1 24 NULL bytes in pdata*/
|
||||
|
||||
/* the soft quotas 8 bytes (SMB_BIG_UINT)*/
|
||||
@ -541,7 +541,7 @@ bool cli_set_fs_quota_info(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_ST
|
||||
data, 48, 0)) {
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
||||
if (!cli_receive_trans(cli, SMBtrans2,
|
||||
&rparam, &rparam_count,
|
||||
&rdata, &rdata_count)) {
|
||||
@ -604,7 +604,7 @@ void dump_ntquota(SMB_NTQUOTA_STRUCT *qt, bool _verbose, bool _numeric, void (*_
|
||||
case SMB_USER_QUOTA_TYPE:
|
||||
{
|
||||
fstring username_str = {0};
|
||||
|
||||
|
||||
if (_sidtostring) {
|
||||
_sidtostring(username_str,&qt->sid,_numeric);
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user