summaryrefslogtreecommitdiff
path: root/source3/utils
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-08-12 20:58:56 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:00:30 -0500
commitc188a68effd8524cb98cef943ac0099ba09ffe09 (patch)
tree62d1c010c3c6076a1bcd40e2fe676d613b2d237a /source3/utils
parente4edd9527595faf480b80bf2b2df0392565ea51f (diff)
downloadsamba-c188a68effd8524cb98cef943ac0099ba09ffe09.tar.gz
samba-c188a68effd8524cb98cef943ac0099ba09ffe09.tar.bz2
samba-c188a68effd8524cb98cef943ac0099ba09ffe09.zip
r9272: Patch for fixing unused variables warning from Jason Mader. Fixes
bugzilla #2984. (This used to be commit 7d8dd97c3d978a326ab8b1506d327082933eebae)
Diffstat (limited to 'source3/utils')
-rw-r--r--source3/utils/pdbedit.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/utils/pdbedit.c b/source3/utils/pdbedit.c
index 7c934cdb6c..c88c0d7579 100644
--- a/source3/utils/pdbedit.c
+++ b/source3/utils/pdbedit.c
@@ -235,7 +235,7 @@ static int print_user_info (struct pdb_context *in, const char *username, BOOL v
static int print_users_list (struct pdb_context *in, BOOL verbosity, BOOL smbpwdstyle)
{
SAM_ACCOUNT *sam_pwent=NULL;
- BOOL check, ret;
+ BOOL check;
check = NT_STATUS_IS_OK(in->pdb_setsampwent(in, False, 0));
if (!check) {
@@ -245,7 +245,7 @@ static int print_users_list (struct pdb_context *in, BOOL verbosity, BOOL smbpwd
check = True;
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)))) {
+ while (check && NT_STATUS_IS_OK(in->pdb_getsampwent (in, sam_pwent))) {
if (verbosity)
printf ("---------------\n");
print_sam_info (sam_pwent, verbosity, smbpwdstyle);
@@ -264,7 +264,7 @@ static int print_users_list (struct pdb_context *in, BOOL verbosity, BOOL smbpwd
static int fix_users_list (struct pdb_context *in)
{
SAM_ACCOUNT *sam_pwent=NULL;
- BOOL check, ret;
+ BOOL check;
check = NT_STATUS_IS_OK(in->pdb_setsampwent(in, False, 0));
if (!check) {
@@ -274,7 +274,7 @@ static int fix_users_list (struct pdb_context *in)
check = True;
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)))) {
+ while (check && 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)) {
@@ -430,12 +430,12 @@ static int new_user (struct pdb_context *in, const char *username,
const char *profile, char *user_sid, char *group_sid)
{
SAM_ACCOUNT *sam_pwent=NULL;
- NTSTATUS nt_status;
+
char *password1, *password2, *staticpass;
get_global_sam_sid();
- if (!NT_STATUS_IS_OK(nt_status = pdb_init_sam_new(&sam_pwent, username, 0))) {
+ if (!NT_STATUS_IS_OK(pdb_init_sam_new(&sam_pwent, username, 0))) {
DEBUG(0, ("could not create account to add new user %s\n", username));
return -1;
}