1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

In torture_leave_domain, say what account was deleted

(This used to be commit a9a0f24f72)
This commit is contained in:
Volker Lendecke 2008-05-16 15:38:16 +02:00
parent 8a31130a76
commit ef6fd2d46d

View File

@ -508,9 +508,11 @@ _PUBLIC_ void torture_leave_domain(struct test_join *join)
/* Delete machine account */
status = dcerpc_samr_DeleteUser(join->p, join, &d);
if (!NT_STATUS_IS_OK(status)) {
printf("Delete of machine account failed\n");
printf("Delete of machine account %s failed\n",
join->netbios_name);
} else {
printf("Delete of machine account was successful.\n");
printf("Delete of machine account %s was successful.\n",
join->netbios_name);
}
if (join->libnet_r) {