1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-29 13:49:30 +03:00

Two character tabs - I don't think so.

(This used to be commit 40d370bec6)
This commit is contained in:
Tim Potter
2003-04-28 05:40:46 +00:00
parent 39fbda7f03
commit 29ac5d2873

View File

@ -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;
}