mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
Fix another "format not a string literal and no format arguments" warning.
Jeremy
This commit is contained in:
parent
227c8000df
commit
cb7d7beb99
@ -586,7 +586,7 @@ static NTSTATUS fetch_account_info_to_ldif(TALLOC_CTX *mem_ctx,
|
||||
uchar zero_buf[16];
|
||||
uint32 rid = 0, group_rid = 0, gidNumber = 0;
|
||||
time_t unix_time;
|
||||
int i;
|
||||
int i, ret;
|
||||
|
||||
memset(zero_buf, '\0', sizeof(zero_buf));
|
||||
|
||||
@ -660,7 +660,10 @@ static NTSTATUS fetch_account_info_to_ldif(TALLOC_CTX *mem_ctx,
|
||||
return NT_STATUS_UNSUCCESSFUL;
|
||||
}
|
||||
gidNumber = groupmap[i].gidNumber;
|
||||
snprintf(sambaSID, sizeof(sambaSID), groupmap[i].sambaSID);
|
||||
ret = snprintf(sambaSID, sizeof(sambaSID), "%s", groupmap[i].sambaSID);
|
||||
if (ret < 0 || ret == sizeof(sambaSID)) {
|
||||
return NT_STATUS_UNSUCCESSFUL;
|
||||
}
|
||||
|
||||
/* Set up sambaAcctFlags */
|
||||
flags = pdb_encode_acct_ctrl(r->acct_flags,
|
||||
|
Loading…
Reference in New Issue
Block a user