summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* The DELL powervault 705 is sending a tcon&x with the service name beingJean-François Micouleau2001-08-221-5/+15
| | | | | | | | | "share" instead of "\\server\share". Fix that. Still not able to get the user list but that's something else. Jeremy I don't think I broke anything ;-) J.F.
* force checking of log size after 200 smbd in a row or after 30 sec with noHerb Lewis2001-08-221-2/+3
| | | | | | | smbds. This should fix one case of logs not getting rotated properly. We may need to test this to make sure there is no big performance hit from the extra stat call.
* Mention 'delete veto files' in 'veto files' descriptionVolker Lendecke2001-08-221-7/+8
| | | | Volker
* Remove unneeded lp_talloc_free().Jeremy Allison2001-08-221-3/+0
| | | | Jeremy.
* added ERRbadmcbAndrew Tridgell2001-08-221-0/+1
|
* minor bug fixes to smbtortureAndrew Tridgell2001-08-221-3/+5
|
* Link in smbdes routines for new wbinfo authentication stuff.Tim Potter2001-08-221-1/+1
|
* Added another authentication interface to winbindd. The Challenge ResponseTim Potter2001-08-226-26/+210
| | | | | | Authentication Protocol (CRAP) takes a tuple of (username, random challenge, encrypted lm password, encrypted nt password) where the passwords are encrypted with the random challenge ala ntlmssp.
* a fix for directory listing with the dave/thursby clientAndrew Tridgell2001-08-221-1/+1
|
* Fixed typo.Volker Lendecke2001-08-221-1/+1
| | | | Volker
* merge from 2.2Gerald Carter2001-08-221-0/+3
|
* merge from 2.2Gerald Carter2001-08-221-9/+14
|
* Missed '\' at eol...Jeremy Allison2001-08-221-1/+1
| | | | Jeremy.
* Tidyup fixes for fcntl spin problem.Jeremy Allison2001-08-222-14/+43
| | | | Jeremy.
* Fixed the (incorrect) paranioa fix I put in for the fcntl lock spin.Jeremy Allison2001-08-224-28/+85
| | | | | | Don't delete a share mode that failed to remove the oplock (doh!), just set the oplock entry to zero.... Jeremy.
* sync with 2.2 branchHerb Lewis2001-08-211-20/+13
|
* Missed uninitialized variable return for del_share_mode().Jeremy Allison2001-08-211-1/+1
| | | | Jeremy.
* string terminate in mkdirAndrew Tridgell2001-08-211-1/+1
|
* Added cli_lsa_open_policy2()Tim Potter2001-08-211-0/+58
|
* Distinguish between NT informational and error codes.Tim Potter2001-08-211-4/+10
|
* Add a new option to disable our paranoid server check.Andrew Bartlett2001-08-213-2/+6
| | | | Defaults to ON, ie checking
* Fixed a little typo.Volker Lendecke2001-08-211-1/+1
| | | | Volker
* This is Jeremy pretending to be Volker, 'cos theVolker Lendecke2001-08-213-64/+159
| | | | | | | | | | | | | | | | | link from Seattle is having problems. I've added 3 things here to work on the fcntl spin problem. 1). Check *all* tdb return codes... :-). 2). If we're asking ourselves to break an oplock, and we can't find a fsp pointer that matches the entry, this is a *logic bug* and we should abort and panic so someone with gdb can pick up the pieces. 3). After we've broken an oplock, ensure that the entry itself has been removed, and if not remove it ourselves. This should not be neccessary in a correctly working environmen,t, but will provide an added layer of robustness in error situations. 4). I hate german keyboards :-) :-). Jeremy.
* Ensure we are very explicit about what we're comparing whenJeremy Allison2001-08-201-4/+4
| | | | | | | we're comparing structures (ie. don't just do a memcmp). I don't think this will fix the fcntl spin issue, but it's a "just in case" change. Jeremy.
* Add comment to clarify why we call this twice.Andrew Bartlett2001-08-202-0/+4
|
* two fixes for NT clients -> share level Samba serverAndrew Tridgell2001-08-203-3/+13
|
* allow for the NULL in make_nmb_name()Andrew Tridgell2001-08-201-1/+1
|
* added -b optionAndrew Tridgell2001-08-201-2/+9
|
* a bunch of fixes from the sflight to seattleAndrew Tridgell2001-08-2013-676/+699
| | | | | | in particular: - fixed NT status code for a bunch of ops - fixed handling of protocol levels in ms_fnmatch
* Realloc fix.Jeremy Allison2001-08-191-6/+5
| | | | Jeremy.
* Realloc fixes.Jeremy Allison2001-08-191-13/+8
| | | | Jeremy.
* Realloc fixes.Jeremy Allison2001-08-191-6/+5
| | | | Jeremy.
* Realloc fixes.Jeremy Allison2001-08-191-2/+3
| | | | Jeremy.
* More Realloc fixes.Jeremy Allison2001-08-191-4/+3
| | | | Jeremy.
* Realloc fix.Jeremy Allison2001-08-191-3/+13
| | | | Jeremy.
* Add missing gcc memory barriers, this bug showed up when doing aAnton Blanchard2001-08-191-16/+43
| | | | | | heavy netbench run. :) Rework ppc spinlocks to be faster.
* More Realloc fixes.Jeremy Allison2001-08-182-4/+13
| | | | Jeremy.
* More Realloc fixes.Jeremy Allison2001-08-181-7/+17
| | | | Jeremy.
* Use tparam not tdata when reallocing params to make clearer.Jeremy Allison2001-08-171-12/+15
| | | | Jeremy.
* more useful debug messages and check if the size are non null.Jean-François Micouleau2001-08-171-10/+17
| | | | | | that fix the notification backend channel for spoolss. J.F.
* OK, so not freeing these was a mistake. I'll try to be less exuberent nextAndrew Bartlett2001-08-171-0/+2
| | | | time :-)
* Move the claim_connection stuff till a little later in the process.Andrew Bartlett2001-08-171-16/+14
| | | | (You don't have to clean up somthing you haven't done yet...)
* Move admin user check into a helper function.Andrew Bartlett2001-08-171-18/+35
| | | | Formatting fixes.
* Move read only check into a helper funcion. Ensure conn->service is setAndrew Bartlett2001-08-171-40/+50
| | | | before we use it to find a share's details.
* Restore a debug I think I dropped earlierAndrew Bartlett2001-08-171-0/+2
|
* smbd/auth_server: Doco, we want to use cli_nt_error here soonAndrew Bartlett2001-08-175-36/+47
| | | | | | | | | smbd/password.c: We don't use globals here anymore smbd/reply.c: Tidyness, global_myworkgroup must die! smbd/service.c: Move some of the make_connection code into a helper function.
* Style cleanup for the last vuid change.Andrew Bartlett2001-08-173-11/+17
| | | | | | | Style, doco and DEBUG() fixes for auth_smbpasswd.c (In particular for the account control call). Andrew Bartlett
* One less getpwnam() call...Andrew Bartlett2001-08-172-11/+6
| | | | Andrew Bartlett
* removed unused fileAndrew Tridgell2001-08-161-91/+0
|
* removed unused fileAndrew Tridgell2001-08-161-113/+0
|