summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
* | More fixes for builddir != srcdir.Tim Potter2003-05-275-38/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Use absolute directories for $builddir and $srcdir in the Makefile - Don't try and combine source files in $builddir and $srcdir to build proto.h. It's just too hard to get it right across all targets we wish to compile on. Use a hand created prototype for the single function in smbd/build_options.c that we need. This allows us to ditch all the extra sed work that was causing problems: \t not portable - hah! - Fix bogus delheaders target to remove the correct files This appears to work quite nicely now. Let's see how it goes on the buildfarm machines. (This used to be commit 456184463d35c18840c39cb3483b7136247ea764)
* | Fix extra arg for cm_get_netlogon_cli()Tim Potter2003-05-271-1/+1
| | | | | | | | (This used to be commit a0c3f1d31c4888d33061bb011fcb8e701bba30bc)
* | Whoops - tried to merge to wrong branch for bug #60 merge. This redosTim Potter2003-05-271-3/+0
| | | | | | | | | | the original fix. (This used to be commit 711f65bee0e7955fdb415182abe4812eae8ec4c3)
* | Formatting syncup.Tim Potter2003-05-261-3/+1
| | | | | | | | (This used to be commit f4b050932a44d836b11299c158666f6804cceda5)
* | Merge of fix for bug #60.Tim Potter2003-05-261-0/+3
| | | | | | | | (This used to be commit 0583dc358e918cf8bfb4d17bae0f42c4b385d313)
* | Ignore t_stringoverflow binary.Tim Potter2003-05-261-0/+1
| | | | | | | | (This used to be commit 59326e7a53803060e25832719c6cd48278f1a72b)
* | Fix list of servers in 'smbclient -L' (debian bug #194553, patch by Heine ↵Jelmer Vernooij2003-05-261-1/+1
| | | | | | | | | | | | Larsen) (This used to be commit e9df7d2820441c63c35e7b4fc5b3cc594053781c)
* | Metze's patches:John Terpstra2003-05-262-59/+57
| | | | | | | | | | | | | | | | | | | | | | here's a small patch which renames the symbol 'log' to some better names to avoid compiler warnings about shodow global var 'log' in proto.h we now have a GLOBAL_SECTION_SNUM -1 so we should use it in swat too:-) (This used to be commit a4733a0748b4d24457558304ad47852c69905cb2)
* | Correctly initialize winbind auth method.Volker Lendecke2003-05-261-0/+3
| | | | | | | | (This used to be commit b9e7ce9d85c4203779d6b9bfb2e65a4ed5fe33ff)
* | Ignore autogenerated file.Tim Potter2003-05-261-0/+1
| | | | | | | | (This used to be commit de8180a28024a312c4d5bb97e274122d631580c2)
* | This fixes net rpc vampire when talking to win2k (<sp3). win2k sendsTim Potter2003-05-262-7/+7
| | | | | | | | | | | | back a different sized blob of encrypted password data then we were expecting. There's an extra 32 bytes of unknown stuff. (This used to be commit 285952fd626b02362fb6732f90c5a3ce0d2d5ae0)
* | Spelling.Tim Potter2003-05-261-1/+2
| | | | | | | | (This used to be commit eda897306896b729129582fdf4fdd26af555f014)
* | Add samstrict_dc from metze (been sitting in HEAD for way to long waiting forAndrew Bartlett2003-05-261-0/+46
| | | | | | | | | | | | | | | | | | | | me to review it). This patch works well for a DC running with trusted domains, becouse it lets you check the local SAM first, but only for this domain's users. Andrew Bartlett (This used to be commit e0bd4d2844e6073a83b72925bca1aec007a8dd0b)
* | Get 'add user script' working again for Samba 3.0.Andrew Bartlett2003-05-253-47/+52
| | | | | | | | | | | | | | | | | | | | I'm still not convinced that sharing the option name with the administrative code is the best idea, but anyway... Tested by vl, bug #41. Andrew Bartlett (This used to be commit 9d78f064c5e4e6b340f994204977aaac6513320b)
* | Fix an insufficient alloc when querying alias members.Volker Lendecke2003-05-241-1/+1
| | | | | | | | | | Volker (This used to be commit 47c36290db5e1f84ddf78913b3971aea04d243ab)
* | Don't use extensions like '\t' in a sed script. It breaks the make proto.Jeremy Allison2003-05-231-6/+6
| | | | | | | | | | Jeremy. (This used to be commit 7d546a6bad3378fcdaf5fc7f0c2057e71382c00a)
* | installman needs to depend on installdirs, to fix parallelAndrew Tridgell2003-05-231-2/+2
| | | | | | | | | | build/install (This used to be commit 8fa687701a73cbce031cc5550412558a49d697a9)
* | Ignore *.po files.Tim Potter2003-05-231-0/+1
| | | | | | | | (This used to be commit e90c5796d2dcdbb81b2e78c580704da1f93547cc)
* | Bug 83: fixes for building when $srcdir != $builddir from David LeeTim Potter2003-05-234-22/+33
| | | | | | | | | | <t.d.lee@durham.ac.uk> (This used to be commit e48a8b5e9c1a75c6e4bffe022d0e25edae89bc58)
* | Compile shared modules with the -fPIC flag. Reported by Steve Langasek akaJelmer Vernooij2003-05-221-38/+38
| | | | | | | | | | vorlon. (This used to be commit a5f165020aecde604bbb9982944fb44bcfea19ae)
* | Stat opens can have fsp->fd == -1 and will have a share entry. EnsureJeremy Allison2003-05-221-2/+10
| | | | | | | | | | | | that file_find_dif will find them. Fixes a core dump in smbd/open.c. Jeremy. (This used to be commit 0e2165630d2ce31076fef6d7098e45c8fd327e23)
* | More fixes for debug log to catch logic error.Jeremy Allison2003-05-222-8/+6
| | | | | | | | | | Jeremy. (This used to be commit 84a7714eba801fefa7ad56493f20813de3943bc5)
* | Add more info to debug info...Jeremy Allison2003-05-221-1/+5
| | | | | | | | | | Jeremy. (This used to be commit 6d3b72b4994a5115a1e7f0ca3912692a33fc690e)
* | fix bug #108; sambaSambaAccount string attributes are case insensitive; ↵Gerald Carter2003-05-221-2/+5
| | | | | | | | | | | | don't try to change a string that only differs in case (This used to be commit 01ef08352007487040edefcc0b99ca79823cbddf)
* | fixes bugs 85 & 99 (XP domain logons); don't enable the lsa_query_info2 ↵Gerald Carter2003-05-221-1/+13
| | | | | | | | | | | | unless we are trying to be an ADS DC (This used to be commit bf20976e5a993f4cfa05c1e0a9ecab2c7da99263)
* | updating versionGerald Carter2003-05-221-1/+1
| | | | | | | | (This used to be commit b1eb0dd7e0593e08f71aa9c4fc3d47ccdfabc691)
* | Merge of head(1) portability patch.Tim Potter2003-05-221-2/+2
| | | | | | | | (This used to be commit 9192921c115b881d687f28d016c478192ab4d4ae)
* | fix for UNICODE plaintext passwords (bug #59) and fix smbclient to send the ↵Gerald Carter2003-05-212-4/+20
| | | | | | | | | | | | unicode plain text password if negoitated (This used to be commit e7d635af80c844f17ff9f34c26c1e9c978951ce1)
* | merge LANMAN1/LANMAN2.1 fixes from headAndrew Tridgell2003-05-211-0/+2
| | | | | | | | (This used to be commit 73c686ab771b6c3e9a9335032f851083d44701c7)
* | really make sure to include the version in the lanman string; tested spnego ↵Gerald Carter2003-05-201-8/+9
| | | | | | | | | | | | using smbclient (This used to be commit d7ca85613b6acf60e29cc118435db2c075995edb)
* | better handling of --with-expsam (includes pdb_nisplussam now)Gerald Carter2003-05-201-24/+37
| | | | | | | | (This used to be commit 6cb3d3cc609c22b54c793ab4d0be645e85e5ad35)
* | remove WITH_TDB_SAM & USE_SMBPASS_DBGerald Carter2003-05-201-4/+0
| | | | | | | | (This used to be commit 1f98ced3163e26818c12829801729bc28f858de7)
* | wrap pdb_[nisplussam|xml|mysql] in --with-expsam option & some formatting fixesGerald Carter2003-05-201-19/+42
| | | | | | | | (This used to be commit 014350196df287beae212e99d22dc63ecbe7d36e)
* | Fix bug #95: net did not build when ldap was installed, but --without-adsJim McDonough2003-05-201-1/+1
| | | | | | | | | | was specified. (This used to be commit 17b0acff8a4e34674263b381c02a97c0fb3f44bc)
* | Fix bug #96: Use DNS decompression to properly parse cldap netlogonJim McDonough2003-05-201-110/+132
| | | | | | | | | | | | | | | | packets, otherwise repeated components will not decode correctly. Thanks to aliguori@us.ibm.com for the fix, and lukeh@padl.com for pointing us to the right docs. (This used to be commit a8d5d74cf80c6cae3eac1daa3f88d56373789560)
* | Fix bug #98: DNS compression is required for proper building of theJim McDonough2003-05-201-25/+42
| | | | | | | | | | | | netlogon for ads packet. repeated DNS components will not be properly encoded otherwise. (This used to be commit 1e85a9ed8da2e48b0ef586599742ed515bd91ecd)
* | FreeBSD5 ACL fix.Jeremy Allison2003-05-191-0/+5
| | | | | | | | | | Jeremy. (This used to be commit 6669c38ed0e209d40aff82867b92d704875c2f80)
* | Fix macros for next and opaque quota ops. Spotted by metzeAlexander Bokovoy2003-05-191-4/+4
| | | | | | | | (This used to be commit 46e6621b2ebe7a8d1bd0c05197667aaa4e078efd)
* | Updates for AIX winbind client from Stephen Roylance.Tim Potter2003-05-191-62/+58
| | | | | | | | (This used to be commit 3983f3a1f30deae8d66c1f4c099bb56eabe3586b)
* | Cope with cumulative permissions sets. This code is #ifdef'ed out at theJeremy Allison2003-05-171-1/+49
| | | | | | | | | | | | | | moment as I don't think cumulative permission sets make sense in POSIX even though that's the way Windows works.... Jeremy. (This used to be commit 6ddd5b6ca7dde45ce866f852861e143434c84c7e)
* | Patch from "Esh, Andrew" <Andrew_Esh@adaptec.com> to fix core dump bugJeremy Allison2003-05-161-1/+14
| | | | | | | | | | | | in add groupmem code. Jeremy. (This used to be commit f41eb9ce9af2075f62abaecd8792d30617d05818)
* | Well spotted typo by Marco Berger <MARCOB@voelcker.com>Andrew Bartlett2003-05-161-1/+1
| | | | | | | | | | Andrew Bartlett (This used to be commit f16b0e025ea3112b4c231b67bc95f63418599f2e)
* | David Lee <t.d.lee@durham.ac.uk> provides some corrections to the commentsAndrew Bartlett2003-05-161-39/+5
| | | | | | | | | | | | | | in the UTMP code. Andrew Bartlett (This used to be commit f0cff106cb6c8993eb31f589106d845261c1f8e9)
* | another bugfix from Alex Deiter <tiamat@komi.mts.ru>Simo Sorce2003-05-161-1/+1
| | | | | | | | | | thanks (This used to be commit 29dc40639fad7652f7f99995be7552f5143ff052)
* | Fix from Alex Deiter <tiamat@komi.mts.ru>Simo Sorce2003-05-161-1/+1
| | | | | | | | | | Reversed check. (This used to be commit 542ee1d3d6401c4d03770f07cfc907d016e166b4)
* | add metze's patch for smb_register functionsSimo Sorce2003-05-163-6/+3
| | | | | | | | (This used to be commit 1480c7e8c7a84c34181118c449c50ca99fdcbc6b)
* | add idmap_winbind unless I made a better way to solve SID type for domainSimo Sorce2003-05-163-1/+157
| | | | | | | | | | SIDs (This used to be commit b24c0efc4b363cb0d4ed71588e9617d668c16be9)
* | Clarify a comment: The secure channel connection must be opened on theTim Potter2003-05-161-4/+4
| | | | | | | | | | | | same session (TCP connection) as the one the challenge was requested from. (This used to be commit 5cb9b99f0f5dad589ac7def667e354d6f92f8822)
* | Patch from Luke Howard <lukeh@PADL.COM> to recognise local groups.Jeremy Allison2003-05-151-0/+2
| | | | | | | | | | Jeremy. (This used to be commit d7a23afe14b0d3ad8ecb7d994768705a32055d9a)
* | Fix for winbindd segfault (finally I think this is the correct one :-)Jeremy Allison2003-05-151-1/+1
| | | | | | | | | | | | from "Roylance, Stephen D." <SROYLANCE@PARTNERS.ORG>. Jeremy. (This used to be commit 459fb6519bc9bc9bbb151291ff795ecc0c014d63)