mirror of
https://github.com/samba-team/samba.git
synced 2025-01-07 17:18:11 +03:00
Two character tabs - I don't think so.
This commit is contained in:
parent
0c3314ab97
commit
40d370bec6
@ -637,14 +637,13 @@ void print_guid(GUID *guid)
|
||||
|
||||
DOM_SID *sid_dup_talloc(TALLOC_CTX *ctx, DOM_SID *src)
|
||||
{
|
||||
DOM_SID *dst;
|
||||
|
||||
if(!src)
|
||||
return NULL;
|
||||
|
||||
if((dst = talloc_zero(ctx, sizeof(DOM_SID))) != NULL) {
|
||||
sid_copy( dst, src);
|
||||
}
|
||||
|
||||
return dst;
|
||||
DOM_SID *dst;
|
||||
|
||||
if(!src)
|
||||
return NULL;
|
||||
|
||||
if((dst = talloc_zero(ctx, sizeof(DOM_SID))) != NULL)
|
||||
sid_copy( dst, src);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user