[SCM] Samba Shared Repository - branch v3-4-test updated

Karolin Seeger kseeger at samba.org
Tue May 11 06:48:08 MDT 2010


The branch, v3-4-test has been updated
       via  fb4d896... s3-net: Fix Bug #7417. 'net rpc user password' can set the wrong password.
      from  1d441b8... WHATSNEW: Start release notes for Samba 3.4.9.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-4-test


- Log -----------------------------------------------------------------
commit fb4d896217183b0ea2b97016aa84c2d83f7f1323
Author: Günther Deschner <gd at samba.org>
Date:   Sat May 8 02:16:37 2010 +0200

    s3-net: Fix Bug #7417. 'net rpc user password' can set the wrong password.
    
    Guenther
    (cherry picked from commit 7887d99a60387e93ce5ce4a3bfe9117939d1e4c8)

-----------------------------------------------------------------------

Summary of changes:
 source3/utils/net_rpc.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c
index 75726b0..aa04172 100644
--- a/source3/utils/net_rpc.c
+++ b/source3/utils/net_rpc.c
@@ -758,8 +758,11 @@ static int rpc_user_password(struct net_context *c, int argc, const char **argv)
 		if (asprintf(&prompt, "Enter new password for %s:", argv[0]) == -1) {
 			return -1;
 		}
-		u1003.usri1003_password = getpass(prompt);
+		u1003.usri1003_password = talloc_strdup(c, getpass(prompt));
 		SAFE_FREE(prompt);
+		if (u1003.usri1003_password == NULL) {
+			return -1;
+		}
 	}
 
 	status = NetUserSetInfo(c->opt_host, argv[0], 1003, (uint8_t *)&u1003, &parm_err);


-- 
Samba Shared Repository


More information about the samba-cvs mailing list