summaryrefslogtreecommitdiff
path: root/source3/utils
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2004-02-12 17:12:06 +0000
committerGerald Carter <jerry@samba.org>2004-02-12 17:12:06 +0000
commit4bfc270e088b8b17f27a162cdcafe9848e54ada0 (patch)
treedc1375afc4ff59a9018b45c327a15330b8cd31b5 /source3/utils
parent45fd0e4dd0ff4b64cd343c8691580f5b983825ab (diff)
downloadsamba-4bfc270e088b8b17f27a162cdcafe9848e54ada0.tar.gz
samba-4bfc270e088b8b17f27a162cdcafe9848e54ada0.tar.bz2
samba-4bfc270e088b8b17f27a162cdcafe9848e54ada0.zip
merges from 3.0
(This used to be commit 2478501d402a07248d6181d4c9de253b203ff67c)
Diffstat (limited to 'source3/utils')
-rw-r--r--source3/utils/pdbedit.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/utils/pdbedit.c b/source3/utils/pdbedit.c
index f402567b74..83663c52b6 100644
--- a/source3/utils/pdbedit.c
+++ b/source3/utils/pdbedit.c
@@ -251,13 +251,15 @@ static int fix_users_list (struct pdb_context *in)
if (!(NT_STATUS_IS_OK(pdb_init_sam(&sam_pwent)))) return 1;
while (check && (ret = NT_STATUS_IS_OK(in->pdb_getsampwent (in, sam_pwent)))) {
+ printf("Updating record for user %s\n", pdb_get_username(sam_pwent));
+
if (!pdb_update_sam_account(sam_pwent)) {
- DEBUG(0, ("Update of user %s failed!\n", pdb_get_username(sam_pwent)));
+ printf("Update of user %s failed!\n", pdb_get_username(sam_pwent));
}
pdb_free_sam(&sam_pwent);
check = NT_STATUS_IS_OK(pdb_init_sam(&sam_pwent));
if (!check) {
- DEBUG(0, ("Failed to initialise new SAM_ACCOUNT structure (out of memory?)\n"));
+ fprintf(stderr, "Failed to initialise new SAM_ACCOUNT structure (out of memory?)\n");
}
}