1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

lib: Add proper {} to tcopy_passwd

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>

Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Tue Nov 18 21:45:40 CET 2014 on sn-devel-104
This commit is contained in:
Volker Lendecke 2014-11-18 10:37:15 +01:00 committed by Jeremy Allison
parent 35cd5f783e
commit 1d6016df5c

View File

@ -42,8 +42,9 @@ struct passwd *tcopy_passwd(TALLOC_CTX *mem_ctx,
ret = talloc_pooled_object(mem_ctx, struct passwd, 5, len);
if (ret == NULL)
if (ret == NULL) {
return NULL;
}
ret->pw_name = talloc_strdup(ret, from->pw_name);
ret->pw_passwd = talloc_strdup(ret, from->pw_passwd);