Displaying 3 results from an estimated 3 matches for "old_passwd".
Did you mean:
old_password
2016 Mar 06
0
Segmentation Fault when trying to set root samba password, IPA as a backend
...x80028100
acb = 16
rid = 0
result = {v = 0}
user_exists = false
ret = -1
---Type <return> to continue, or q <return> to quit---
#6 0x800034ac in password_change (remote_mach=0x0,
username=0x800081c0 <user_name> "ldap09", old_passwd=0x0,
new_pw=0x800118b8 "p4ssword", local_flags=577)
at ../source3/utils/smbpasswd.c:264
ret = {v = 0}
err_str = 0x0
msg_str = 0x0
#7 0x80003c88 in process_root (local_flags=577)
at ../source3/utils/smbpasswd.c:466
pwd = 0x1
resu...
2016 Mar 06
2
Segmentation Fault when trying to set root samba password, IPA as a backend
On Fri, Mar 04, 2016 at 04:16:44PM +0000, Rowland penny wrote:
> On 04/03/16 09:58, Volker Lendecke wrote:
> >On Fri, Mar 04, 2016 at 10:53:17AM +0100, Volker Lendecke wrote:
> >>On Wed, Mar 02, 2016 at 09:23:34AM +0000, Rowland penny wrote:
> >>>OK, here is the output:
> >>Can you try the attached (UNTESTED!) patch?
> >>
> >>Thanks,
>
1999 Sep 21
0
[patch] fixing scope id problems
...d.diff'
X--- smbpasswd.c.orig Wed Jul 21 08:25:25 1999
X+++ smbpasswd.c Mon Sep 20 23:21:22 1999
X@@ -20,6 +20,7 @@
X #include "includes.h"
X
X extern pstring myhostname;
X+extern pstring scope;
X extern pstring global_myname;
X extern int DEBUGLEVEL;
X
X@@ -276,7 +277,7 @@
X char *old_passwd = NULL;
X char *remote_machine = NULL;
X
X- while ((ch = getopt(argc, argv, "adehmnj:r:sR:D:U:")) != EOF) {
X+ while ((ch = getopt(argc, argv, "adehmnj:r:sR:D:U:C:")) != EOF) {
X switch(ch) {
X case 'a':
X add_user = True;
X@@ -316,6 +317,9 @@
X break;
X ca...