summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * r21557: indent only fix. No code change.Günther Deschner2007-02-271-49/+49
| | | | | | | | Guenther
| * r21556: Remove superfluos return check in ads_keytab_verify_ticket().Günther Deschner2007-02-271-2/+0
| | | | | | | | Guenther
| * r21552: Ensure to check for proto_exists before linking any binary. No makeLars Müller2007-02-261-108/+108
| | | | | | | | | | | | proto should be required before creating any binary from now on. Remove proto_exists from the all, pam_smbpass, and pam_bindind rule.
| * r21551: Ok, this is more subtle. More tomorrow :-)Volker Lendecke2007-02-261-65/+37
| |
| * r21550: make disp_info_list static to get_samr_dispinfo_by_sid(), add a ↵Volker Lendecke2007-02-261-2/+18
| | | | | | | | comment :-)
| * r21549: Only create DISP_INFO structs for domain handles, the others don't needVolker Lendecke2007-02-261-35/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | them. It just does not make sense to do a querydispinfo on an alias handle... This fixes a memleak: Every samr_connect*() call leaked a DISP_INFO for the (NULL) sid. More cleanup pending: Essentially, we only need the DISP_INFO cache for the get_global_sam_sid() domain. BUILTIN is fixed and small enough, and there are no other domains around where enumerations could happen. This also removes the explicit builtin_domain flags. I don't think this is worth it. If this makes a significant difference, then we have a *VERY* tuned RPC layer... Jeremy, please check this. If it's ok, we might want to merge it across. Volker
| * r21548: prevent segv (reference to -1 element of array)Herb Lewis2007-02-261-1/+2
| |
| * r21547: Fix from Michael Adam <ma@sernet.de>: Refuse registry shares without ↵Volker Lendecke2007-02-262-3/+10
| | | | | | | | | | | | | | | | path. Thanks, Volker
| * r21546: remove duplicate linesHerb Lewis2007-02-261-3/+0
| |
| * r21543: Fix 64bit build warning.Günther Deschner2007-02-261-1/+1
| | | | | | | | Guenther
| * r21540: Fix Bug #3713 and readd reporting what the profiles tool does (whenGünther Deschner2007-02-261-4/+56
| | | | | | | | | | | | | | | | called with the -v option). Patch from William Jojo <jojowil@hvcc.edu>. Guenther
| * r21537: Avoid to trigger the confusing "cached entry differs." warning whenGünther Deschner2007-02-262-2/+20
| | | | | | | | | | | | there is just no cache around for a user. Guenther
| * r21536: Fix copy/paste typo.Günther Deschner2007-02-261-1/+1
| | | | | | | | Guenther
| * r21530: Don't code with jet-lag and Volker looking over yourJeremy Allison2007-02-251-1/+1
| | | | | | | | | | shoulder.... Correct fix for warning :-) Jeremy.
| * r21529: Fix warning from bad cast.Jeremy Allison2007-02-251-1/+1
| | | | | | | | Jeremy.
| * r21526: Fix stray character in sys_memalign() that is only Gerald Carter2007-02-241-1/+1
| | | | | | | | is the case where we don't have memalign() or posix_memalign().
| * r21525: Go ahead and checkin the mlock() & memalign() fixes so Gerald Carter2007-02-246-22/+61
| | | | | | | | | | | | | | | | others don't get stuck with the winbindd hang. Still waiting on additional confirmation from Guenther that this fixes thes issues he was observing as well. But it's been running in my local tree for a day without problems.
| * r21517: Fix build warnings.Günther Deschner2007-02-231-2/+1
| | | | | | | | Guenther
| * r21509: Merge lp_passdb_backend() from rev 21506 to 3_0_25.Lars Müller2007-02-221-2/+2
| | | | | | | | | | Slightly change the DEBUG 0 message as suggested by Volker on samba-technical.
| * r21508: Fix memleak in new idmap_tdb, thanks Herb.Simo Sorce2007-02-221-12/+4
| | | | | | | | | | | | Jerry please check. Simo.
| * r21507: Fix some "cannot access LDAP when no root" bugs.Gerald Carter2007-02-223-13/+30
| | | | | | | | | | | | | | The two culprits were * pdb_get_account_policy() * pdb_get_group_sid()
| * r21506: Allow old pre 3.0.22 multi passdb backend configurations to work withLars Müller2007-02-221-1/+43
| | | | | | | | | | | | | | post 3.0.23. This implementation considers spaces in ldapsam configs. Such configs are trunkated after the closing quote.
| * r21505: make sure mlock()'d memory is aligned on a page boundaryGerald Carter2007-02-222-7/+26
| |
| * r21500: Fix inappropriate creation of a krb5 ticket refreshing event when a userGünther Deschner2007-02-223-6/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changed a password via pam_chauthtok. Only do this if a) a user logs on using an expired password (or a password that needs to be changed immediately) or b) the user itself changes his password. Also make sure to delete the in-memory krb5 credential cache (when a user did not request a FILE based cred cache). Finally honor the krb5 settings in the first pam authentication in the chauthtok block (PAM_PRELIM_CHECK). This circumvents confusion when NTLM samlogon authentication is still possible with the old password after the password has been already changed (on w2k3 sp1 dcs). Guenther
| * r21483: Fix use of uninitialized variable.Jeremy Allison2007-02-211-3/+6
| | | | | | | | Jeremy.
| * r21482: Use IPC$ not ipc$ for consistency.Jeremy Allison2007-02-211-1/+1
| | | | | | | | Jeremy.
| * r21481: No one said anything, so I'm disallowing anythingJeremy Allison2007-02-211-7/+17
| | | | | | | | | | but explicit shares in "default service" :-). Jeremy.
| * r21480: Make fd_open match fd_close be translatingJeremy Allison2007-02-211-9/+12
| | | | | | | | | | errno into an NTSTATUS immediately. Jeremy.
| * r21478: Add 65k length limit for split SPNEGO blobs.Jeremy Allison2007-02-201-9/+19
| | | | | | | | Jeremy
| * r21474: Ensure trustdom_cache_shutdown() gets calledJeremy Allison2007-02-201-4/+4
| | | | | | | | | | on terminate. Pointed out by Herb. Jeremy.
| * r21467: Add GPFS-provided DMAPI support based on their GPL libraryAlexander Bokovoy2007-02-202-1/+11
| |
| * r21462: Fix EnumValue (?)Jelmer Vernooij2007-02-209-126/+65
| |
| * r21461: Not strictly necessary, as data_blob() panics if it can't allocate. ↵Volker Lendecke2007-02-201-0/+4
| | | | | | | | | | | | | | | | | | | | But I'd see this as a design flaw in data_blob() and it made me look in that routine. Jeremy, revert or merge please :-) Volker
| * r21460: Fix for server-side processing of SPNEGO authJeremy Allison2007-02-204-11/+234
| | | | | | | | | | | | | | fragmented into "max xmit" size security blob chunks. Bug #4400. Needs limits adding, and also a client-side version. Jeremy.
| * r21454: Fix debug typo.Günther Deschner2007-02-191-1/+1
| | | | | | | | Guenther
| * r21453: use the tdb mapping file for groups by default for compatibility ↵Gerald Carter2007-02-191-1/+1
| | | | | | | | with the 3.0.25 tree (for now)
| * r21450: No need to TALLOC_FREE twice here.Günther Deschner2007-02-191-2/+0
| | | | | | | | Guenther
| * r21449: Talked to Jerry on irc, he does not see what might break with this: ↵Volker Lendecke2007-02-191-1/+1
| | | | | | | | | | | | | | | | Change back the 'msdfs root = yes' default to 'no'. Volker
| * r21446: Karolins "printjob username"Volker Lendecke2007-02-192-1/+10
| |
| * r21445: Apply tdb_parse_record Tridges error return, merge to 3_0_25 and 4_0Volker Lendecke2007-02-191-9/+2
| |
| * r21444: Check in tdb_parse_record. Not merging to the other branches yet, we ↵Volker Lendecke2007-02-194-13/+101
| | | | | | | | | | | | | | | | | | | | | | need to agree on the behaviour of non-existing records. Tridge, can you comment? Should we change tdb_fetch, or should we have different concepts in tdb_fetch() and tdb_parse_record() ? Volker
| * r21417: Janitor for Herb. Make sure sharesec.c is functionallyJeremy Allison2007-02-181-127/+319
| | | | | | | | | | identical in 3.0.25 and 3.0. Jeremy.
| * r21412: The last patch also incremented the seqnum when tdb_store failed. ↵Volker Lendecke2007-02-171-8/+10
| | | | | | | | | | | | | | | | | | Not as bad as not doing it at all, but needs fixing. Also simplify the logic, I had missed the "goto out" at the end of the function. Volker
| * r21410: We have to increment the sequence number also when tdb_update_hash()Volker Lendecke2007-02-171-1/+1
| | | | | | | | | | | | | | | | succeeded. Found while testing the brlock seqnum patch. Tridge, please check! Volker
| * r21409: saved_status1 is not used anymore after aio write behind was removedVolker Lendecke2007-02-171-5/+2
| |
| * r21399: need to zero the request and response structuresHerb Lewis2007-02-161-0/+3
| |
| * r21397: revert accidential commitHerb Lewis2007-02-161-1/+1
| |
| * r21396: fix wbinfo --lookup-rids commandHerb Lewis2007-02-163-4/+36
| | | | | | | | allow detection of libbiconv if all others fail - need for FreeBSD
| * r21394: Prevent nscd crash due to potential NULL pointer dereference inGünther Deschner2007-02-161-0/+4
| | | | | | | | | | | | _nss_winbind_initgroups_dyn() on an empty group list. Guenther
| * r21393: Fix typo.Günther Deschner2007-02-161-2/+2
| | | | | | | | Guenther