summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Removed JRATEST line.Jeremy Allison2001-03-111-4/+0
| | | | Jeremy.
* Removal of dead code. Not used anywhere.Jeremy Allison2001-03-113-734/+3
| | | | Jeremy.
* Ensure we're checking for the "FIRST" flag in other types of PDU than "REQUEST"Jeremy Allison2001-03-111-4/+6
| | | | | | | (ie. BIND, BINDRESP and ALTERCONTEXT) - if we don't do this then we don't set the endianness flag correctly for these PDU's. Herb - this should fix the bug you reported to me today. Jeremy.
* Sync up include files between 2.2 and HEAD except for the account info.Jeremy Allison2001-03-111-0/+10
| | | | Jeremy.
* Fixed stupid typo.Jeremy Allison2001-03-101-2/+2
| | | | Jeremy.
* Removed incorrect substitution in dir code - move to DOS fnmatch.Jeremy Allison2001-03-102-5/+3
| | | | Jeremy.
* Merge .cvsignore between 2.2 and HEAD.Jeremy Allison2001-03-101-5/+8
| | | | Jeremy.
* autogenGerald Carter2001-03-103-25/+173
|
* fixed a few typos...but I can't even remember what they were right now...Gerald Carter2001-03-101-1/+1
|
* some more checks to ensure that docbook2X is really installedGerald Carter2001-03-102-61/+92
| | | | and fix a few typos in Makefile.in. Patches from Urban.
* updates from UrbanGerald Carter2001-03-102-22/+141
|
* autogen stuff. small perl script in docbook/scriptsGerald Carter2001-03-1027-272/+326
| | | | which strip the ugly <URL:.*html.*> links generated by docbook2man.
* Working on the NT4 ACL view of POSIX ACL problem reported by Gerald. I canJeremy Allison2001-03-101-13/+17
| | | | | | now reproduce it and I know what's wrong, I need to think about how to correctly fix it. Jeremy.
* Sync up with Urban.Jeremy Allison2001-03-102-1/+8
| | | | Jeremy.
* Changing user passwords from a Win2k client now works to a Samba PDC. Thanks ↵Jeremy Allison2001-03-103-5/+8
| | | | | | Jim ! Jeremy.
* Forgot the prs_inits in rpcclient. Now fixed.Jeremy Allison2001-03-093-39/+39
| | | | Jeremy.
* Serious (and I *mean* serious) attempt to fix little/bigendian RPC issues.Jeremy Allison2001-03-0921-149/+231
| | | | | | | | | We were reading the endainness in the RPC header and then never propagating it to the internal parse_structs used to parse the data. Also removed the "align" argument to prs_init as it was *always* set to 4, and if needed can be set differently on a case by case basis. Now ready for AS/U testing when Herb gets it set up :-). Jeremy.
* Patch from Michael Sweet <mike@easysw.com> to allow a --with-fhs. Is *not*Jeremy Allison2001-03-093-824/+932
| | | | | selected by default (default is no change to install directories). Jeremy.
* Smbmount fixes from the new maintainer Urban Widmark <urban@svenskatest.se>Jeremy Allison2001-03-093-59/+293
| | | | Jeremy.
* Final (hopefully) compiler warning fixes.Jeremy Allison2001-03-092-3/+4
| | | | Jeremy.
* Dead code elimination from SGI compiler.Jeremy Allison2001-03-097-13/+17
| | | | Jeremy.
* Dead code removal from SGI compiler.Jeremy Allison2001-03-097-25/+12
| | | | Jeremy.
* Removed dead code... SGI compiler warnings.Jeremy Allison2001-03-091-2/+0
| | | | Jeremy.
* More SGI compiler warning fixes.Jeremy Allison2001-03-095-22/+12
| | | | Jeremy.
* Preparing for alpha3. Fixes for SGI compiler warnings.Jeremy Allison2001-03-093-6/+6
| | | | Jeremy.
* Fixed double fclose() call (I love insure :-).Jeremy Allison2001-03-081-2/+0
| | | | Jeremy.
* Fixed extra 2 byte incorrect parse in SETUSERINFO_24 that was preventingJeremy Allison2001-03-083-7/+19
| | | | | | | W2K clients from joining a Samba domain the "old" way (editing /etc/passwd and adding the machine manually in smbpasswd). Vectored the ms_fnmatch function - preparing to make this DOS client specific. Jeremy.
* Keep enumerating even if there are no handles yet open on a pipe.Jeremy Allison2001-03-081-1/+4
| | | | Jeremy.
* added 'lanman auth' & 'min protocol' code. See smb.conf(5)Gerald Carter2001-03-084-12/+35
| | | | for details
* added new link to winbind HOWTO/White PaperGerald Carter2001-03-081-0/+1
|
* more autogen stuffGerald Carter2001-03-085-1153/+2681
|
* added 'lanman auth' (new), 'min protocol' from Dave Collier-Brown,Gerald Carter2001-03-081-34/+93
| | | | | and 'max protocol' as a more intuitve name for 'protocol'. Code forth coming in a few minutes. :-)
* added winbind chapterGerald Carter2001-03-081-0/+2
|
* new rule for winbind.sgmlGerald Carter2001-03-081-9/+2
|
* Tim reminded be about this yesterday. Thanks Tim :-)Gerald Carter2001-03-081-0/+372
|
* added info level 100 to srv get info call.Jean-François Micouleau2001-03-085-13/+78
| | | | | | | | | passdb/passdb.c: small band aid to reply correctly to domain group RID (dom adm, dom users, ...). that's an interim fix for usrmgr. J.F. I'm gonna miss my plane !
* Ensure dump data dumps the correct size for a POLICY_HND in debug.Jeremy Allison2001-03-081-3/+3
| | | | Jeremy.
* Fixed null pointer deref in new printer enumeration code.Jeremy Allison2001-03-081-1/+1
| | | | Jeremy.
* Fairly big (but needed) change. Move to per-pipe POLICY handles.Jeremy Allison2001-03-0811-565/+528
| | | | | | | | | | | | | | | | | | | | All policy handles will be destroyed on pipe close. No bitmap used, and all handles allocated/deleted in the same way. The ugly, handle specific code in srv_lsa_hnd.c has been removed, now each handle type can store a private data field along with a function that will free the private data on handle close. This means the linked list of printer handles has been removed, as all the info has been added into the pipes_struct. The only issue was enumerating all printers across all open pipes on a change message receipt. This was acheived by adding an enumerate pipes function. This will be a little difficult to move to HEAD due to the samr changes, and probably needs a little more testing with insure. However, even if it turns out that handles are persistent between NT pipes in the same smbd I can fix this by transferring the handle linked list to another pipe of the same type on handle close if this turns out to be the case. Jeremy.
* Fix for AS/U not liking it's own assoc_gid.Jeremy Allison2001-03-081-1/+1
| | | | Jeremy.
* Missed creation of lsa handles. Made all handle creation use common code.Jeremy Allison2001-03-074-34/+24
| | | | Jeremy.
* Correctly marshall "POLICY_HND" structs accross all uses.Jeremy Allison2001-03-0711-61/+59
| | | | Jeremy.
* autogenGerald Carter2001-03-072-11/+15
|
* fixed some typos and clarfied some things. Thanks toGerald Carter2001-03-071-5/+7
| | | | RSzczesniak@mis.com.pl
* fixed typoGerald Carter2001-03-071-1/+1
|
* some autogen documentationGerald Carter2001-03-0710-117/+1825
|
* updating SWAT main page to fix the mailing list link and toGerald Carter2001-03-071-21/+29
| | | | link to new HTML docs
* perl script for generating articles from the SGML/DocBook chaptersGerald Carter2001-03-071-0/+25
| | | | in projdoc/*
* rules for building individual HOWTOsGerald Carter2001-03-073-4/+47
|
* some updates to make it easier fo rthe 2.2 release.Gerald Carter2001-03-071-13/+19
|