summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix debug statement so it doesn't use lp_workgroup() either.Jeremy Allison2001-05-311-1/+1
| | | | | Jeremy. (This used to be commit 18e652a5e0d30d033be70e512cd94bf867507f64)
* fixed asprintf declarationAndrew Tridgell2001-05-301-6/+3
| | | | (This used to be commit fbf03c89e6b1980f4f75a657f9760edb7445d8cb)
* - added AC_HAVE_DECL() macro to aclocal.m4, so we can easily addAndrew Tridgell2001-05-306-571/+728
| | | | | | | tests for a fn or variable being defined in headers - used this to add prototypes for asprintf and vasprintf on systems that don't have them (This used to be commit ab2465239414853a14529f88a25f13c392aa2d3f)
* merged fix for tdb_unpack from 2_2Andrew Tridgell2001-05-301-1/+4
| | | | (This used to be commit 200b682e9bbe79897343422f7c870382ed6de40a)
* added list function to tdbtoolAndrew Tridgell2001-05-301-0/+2
| | | | (This used to be commit c20838c6358f02dea7967e28a5f23db70ff464f9)
* new proto.hAndrew Tridgell2001-05-301-565/+567
| | | | (This used to be commit 823ba34342046a4b736640dff1471fde08e1087f)
* make swat recover from previously bad umask from xinetdAndrew Tridgell2001-05-301-2/+8
| | | | (This used to be commit 045d7e1b167efc75bb3d411b3fcc35bba58c4ef7)
* use the new tdb_open_log() fn on connections databaseAndrew Tridgell2001-05-301-1/+1
| | | | (This used to be commit 68c0dcec3d3c17aae76ce093a601c9f452af5a0c)
* - fixed an off-by-1 bug in the delayed deletion code that I believeAndrew Tridgell2001-05-304-58/+162
| | | | | | | | | was the initial cause of the connections database becoming corrupt. Note that this bug only happens when doing deletions within a traversal, which is why it has only showed up now - added delete within traversal testing to tdbtorture - added a lot more logging to tdb (This used to be commit 6e1277df9d964c615a3ad876d3b89ff8132081c1)
* added a tdb_open_log() function that opens a tdb and enables loggingAndrew Tridgell2001-05-302-1/+34
| | | | | | | of messages from the tdb code into the Samba DEBUG() system just call tdb_open_log() instead of tdb_open() to enable this on any tdb (This used to be commit 3ab770484c6775df2c1a6f69427ebe656702c96c)
* Add border=0 in included swat images to get rid of the link border stuff.Tim Potter2001-05-301-1/+1
| | | | | Much prettier looking. (This used to be commit 16031364a8ce20cf425c758d3fd5035a776e9d9b)
* more portable TDB_LOG macroAndrew Tridgell2001-05-291-1/+1
| | | | (This used to be commit ba106b9b07b23c3dc1b40c8feb10cff173faa07a)
* Fixed compiler warning.Tim Potter2001-05-291-2/+2
| | | | (This used to be commit adb61490af7bbd5f028892692bfe831af8c79f23)
* 4 new functions to retrieve single linked list of group and passwd entriesSimo Sorce2001-05-296-574/+835
| | | | | | + a fix to an infinite loop in srv_samr_nt.c caused by misuse of setgrent/getgrent/endgrent solved by these new functions (This used to be commit 97dbb54a13e2285f1905ee1ec9aafeebdaee8917)
* The manual page for swat referred to nmblookup in the synopsis.Tim Potter2001-05-291-1/+1
| | | | (This used to be commit ab05c8cf1b4b8f56974f358781011c922380fe45)
* make sure the umask is set in swatAndrew Tridgell2001-05-281-0/+2
| | | | (This used to be commit 07c74fe83f77c73ff937a31b7df2f211596e9861)
* try to make the tailer code much more robust. When a recordAndrew Tridgell2001-05-284-14/+123
| | | | | | | | can't be merged don't fail the operation, instead just add it to the free list anyway added logging to tdb (This used to be commit dda086fdf92fded016afc785f7965a375faae5aa)
* i18n fix for domain_client_validate()Tim Potter2001-05-251-1/+1
| | | | (This used to be commit d6dcca7cc9bc5a1948c1b6126ca4f6cb9ccacc52)
* return an error code on password attack, rather than exiting.Andrew Tridgell2001-05-251-4/+7
| | | | | otherwise security scanners may think we are vulnerable! (This used to be commit ee8cb88682421464016d56209eecea764bddc032)
* Added tdb_change_int_atomic() to allow atomic updates of a tdb int value.Jeremy Allison2001-05-254-15/+44
| | | | | Jeremy. (This used to be commit cf5015f15935605cf69078bc15251db61ddc48c7)
* Fixup the large_writex problem (a large_writex can send a full 64k of data,Jeremy Allison2001-05-245-31/+36
| | | | | | we already have space for this we just need to understand the length correctly). Jeremy. (This used to be commit 19145bae720bbcc32dcab380c62a33d1f0e3eef0)
* Fix for random stream generator.Jeremy Allison2001-05-241-168/+186
| | | | | Jeremy. (This used to be commit b2867ddfa26ffbc94d022d88b849ef58fd1cc788)
* Added structures for LOGON_CTRL rpc.Tim Potter2001-05-242-24/+95
| | | | | Make proto. (This used to be commit 0650f87000dcf5572f3a8d61ab93760d94eee770)
* Added srvinfo and partial logonctrl and logonctrl2 commands.Tim Potter2001-05-242-2/+267
| | | | (This used to be commit c93718daa1375269e4e0ef52016271b7a607e292)
* Fixed compiler warning.Tim Potter2001-05-241-1/+0
| | | | (This used to be commit 6e0805c191d7434366e4a8d752b6e34656232371)
* Added server side reponse to net_logon_ctrl rpc. We can now respondTim Potter2001-05-242-3/+62
| | | | | | | to NLTEST /BDC_QUERY:DOMAIN when acting as a BDC. Reverse engineered a couple of status constants. (This used to be commit 0678c302825afef521ae2b80958a1d7c5aa76d23)
* Added srv_get_info client command.Tim Potter2001-05-241-0/+46
| | | | (This used to be commit ee599c9481c26d8407f03a9897eb5f1abd1e47f1)
* Added logon control2 client call.Tim Potter2001-05-241-29/+15
| | | | (This used to be commit 8d5f2027095c3fb9240db238fb6d405aeefef1ef)
* Added a init function for net_q_logon_ctrl2 so we can make this callTim Potter2001-05-241-12/+133
| | | | | | | | from rpcclient. Added init and i/o functions for net_{q,r}_logon_ctrl functions so we can call from rpcclient and respond to this call from smbd. (This used to be commit 8ba30031a4fd900b9b87cf5d04c2f2bf6c436718)
* Removed some level 0 debugs accidentally left in - oops.Tim Potter2001-05-241-3/+0
| | | | (This used to be commit c4e7ce267f63c1b1b0942d8b0a434f6e44a5312f)
* Replaced next_command() with call to next_token().Tim Potter2001-05-241-21/+5
| | | | (This used to be commit c9b4ed79c84dde3421c457cd0a33dae5d84fcae1)
* Added stubs for SRVSVC and NETLOGON rpcclient commands.Tim Potter2001-05-246-428/+289
| | | | (This used to be commit 3343c9f0d67d98687e5933e1a73c0ff487279160)
* Added tdb_errstr() messages so we can see if these functions fail.Jeremy Allison2001-05-231-3/+10
| | | | | Jeremy. (This used to be commit ec64ddac5fa4688b18484d6599b17b8c4bcd34c0)
* This is *very* cool. I'm pretty convinced we can just set theJeremy Allison2001-05-232-0/+2
| | | | | | | | | CAP_LARGE_READX|CAP_LARGE_WRITEX bits on negprot and out W2K performance goes through the roof...... And as we *always* offer 64 buffers we can do this with this simple change..... Jeremy. (This used to be commit c328dda0fa081e79049d7a9ddac06e80cc8b331b)
* Stupid typo. Should be if (!tdb).Jeremy Allison2001-05-231-1/+1
| | | | | Jeremy. (This used to be commit d3496897f167a8deb1d0034797e8b29f2c51acef)
* Try to fix build by adding autoconf tests for pam headers.Jeremy Allison2001-05-224-612/+660
| | | | | Jeremy. (This used to be commit d52bc4d219bd07e656986e7754ea6e238c626d77)
* Defensive brlock and locking database cleaning code.Jeremy Allison2001-05-224-50/+165
| | | | | Jeremy. (This used to be commit d7aa42e4593b02ee6e487f7a4633bd7e7620ef2f)
* Use canonical mappings for file controls. Fixes W2KSP2 profile problems (IJeremy Allison2001-05-181-0/+11
| | | | | | think....). Jeremy. (This used to be commit 946cf3a0d7685e28af847b958ac01739335ea6e4)
* make protoGerald Carter2001-05-181-0/+19
| | | | (This used to be commit 97a88ca86b1c39066ffcdad6e81d6422fad8341b)
* merge from 2.2 (deleteprinterdriver RPC)Gerald Carter2001-05-185-8/+232
| | | | (This used to be commit 515caaf7b448e55206433a9ca04fb5078f91cde2)
* Fix the W2KSP2 joining a Samba domain problem.Jeremy Allison2001-05-184-7/+16
| | | | | Jeremy. (This used to be commit 6bbcab5e48f91a80d4ebcbd2bee38f2e0a8bff78)
* merge from 2.2 DeletePrinterDriver() server side stud comingGerald Carter2001-05-174-1/+200
| | | | | in separate commit after I get it working in 2.2. (This used to be commit 09506ac0e64b84d73e3b8fdd4942fa52dba6060f)
* added utmp.o to NECESSARY_BECAUSE_SAMBA_DEPENDENCIES_ARE_SO_BROKEN_OBJAndrew Tridgell2001-05-171-3/+3
| | | | (This used to be commit f2bb3c50f3481689521607f79ba2bfd696330380)
* - added ability for swat to run under CGI. This needsAndrew Tridgell2001-05-172-600/+629
| | | | | | to be setup very carefully for it not to be a security hole - reran configure (This used to be commit cf4e439a1e0f3fadbe08c474e5b201827866d7f5)
* ran make protoAndrew Tridgell2001-05-171-4/+0
| | | | (This used to be commit 2e605e1275b4cd59ba776101962218efaa87fe37)
* Ran a make proto to fix the problems ...Richard Sharpe2001-05-171-2/+5
| | | | (This used to be commit 7b275b458835a1e34c9014eb3eee6cdae240bd97)
* Test login using pam_winbind.so and group membership.Tim Potter2001-05-171-0/+102
| | | | (This used to be commit 4c2b915ed12584037731d8ccd246ad54986a7564)
* Fixes to get pam_auth() functionality working again.Tim Potter2001-05-174-48/+35
| | | | (This used to be commit 083b74c743f0026693fa0fbe665ed08a3ac706b8)
* Fix a small warning about char * vs unsigned char * that gets some compilersRichard Sharpe2001-05-171-1/+1
| | | | | in a twitch. (This used to be commit 672242a52eafde35cba4657bce248fef0df9e46b)
* Broke out change trust account password routines into separate fileTim Potter2001-05-173-219/+246
| | | | | | since they're only used in one place anyway (timeout_processing() in process.c) (This used to be commit d1e5d5d62fcb5da30e3f2619721c5146db753f3c)