diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-07-26 13:05:29 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-07-26 13:05:29 +0000 |
commit | a56490007479b3f23f5159bfb7545136c40dd1fd (patch) | |
tree | 754f4f497786ee52ce56d9ba44589b7148989733 /source3/passdb/pdb_tdb.c | |
parent | f9558e5819f80734910f5830145cc263628eb779 (diff) | |
download | samba-a56490007479b3f23f5159bfb7545136c40dd1fd.tar.gz samba-a56490007479b3f23f5159bfb7545136c40dd1fd.tar.xz samba-a56490007479b3f23f5159bfb7545136c40dd1fd.zip |
Mimir has been busy with patches again, and sent in the following
patches:
Andrew Bartlett
From his e-mail:
Below I attach the following patches as a result of my work
on trusted domains support:
1) srv_samr_nt.c.diff
This fixes a bug which caused to return null string as
the first entry of enumerated accounts list (no matter what
entry, it was always null string and rid) and possibly
spoiled further names, depeding on their length.
I found that while testing my 'net rpc trustdom list'
against nt servers and samba server.
2) libsmb.diff
Now, fallback to anonymous connection works correctly.
3) smbpasswd.c.diff
Just a little fix which actually allows one to create
a trusting domain account using smbpasswd
4) typos.diff
As the name suggests, it's just a few typos fix :)
(This used to be commit 888d595fab4f6b28318b743f47378cb7ca35d479)
Diffstat (limited to 'source3/passdb/pdb_tdb.c')
-rw-r--r-- | source3/passdb/pdb_tdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/pdb_tdb.c b/source3/passdb/pdb_tdb.c index 0b3eaea900..17b4402644 100644 --- a/source3/passdb/pdb_tdb.c +++ b/source3/passdb/pdb_tdb.c @@ -542,7 +542,7 @@ static BOOL tdbsam_getsampwent(struct pdb_methods *my_methods, SAM_ACCOUNT *user /* increment to next in line */ tdb_state->key = tdb_nextkey(tdb_state->passwd_tdb, tdb_state->key); - /* do we have an valid interation pointer? */ + /* do we have an valid iteration pointer? */ if(tdb_state->passwd_tdb == NULL) { DEBUG(0,("pdb_get_sampwent: Bad TDB Context pointer.\n")); return False; |