summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
* nicer output from "net rpc user add"Andrew Tridgell2002-03-151-0/+6
|
* enable locking on the winbindd cache tdb so it can be backed up andAndrew Tridgell2002-03-151-1/+1
| | | | manipulated externally
* added a -h usage option to winbinddAndrew Tridgell2002-03-151-1/+16
|
* this tdb was being opened without locking, which is unsafe for sharedAndrew Tridgell2002-03-151-2/+2
| | | | databases
* lower the debug level of failing to map a fileAndrew Tridgell2002-03-151-1/+1
|
* syncing up printing code with SAMBA_2_2 (already done some mergesGerald Carter2002-03-1513-344/+1042
| | | | | | | | | | | | | in the reverse). * add in new printer change notify code from SAMBA_2_2 * add in se_map_standard() from 2.2 in _spoolss_open_printer_ex() * sync up the _print_queue_struct in smb.h (why did someone change the user/file names in fs_user/fs_file (or vice-versa) ? ) * sync up some cli_spoolss_XXX functions
* Actually include some *information* in the mangle debug messages.Andrew Bartlett2002-03-141-14/+39
| | | | | | | | In particular this shows the filename, prefix and counters involved. The unicode -> unix converion only occours for the error case. Andrew Bartlett
* Add paged search requests to net ads user and net ads group commands, ↵Jim McDonough2002-03-141-21/+32
| | | | allowing more than 1000 (or whatever the query limit is on the server) objects to be returned. Printers will come next.
* This adds the Paged Result Control to ads searching. The new function, ↵Jim McDonough2002-03-141-0/+79
| | | | ads_do_paged_search, is the same as ads_do_search, but it also contains a count of records returned in this page, and a cookie for resuming, to be passed back. The cookie must start off NULL, and when it returns as NULL, the search is done.
* Remove studly gaps from prs_werror() calls so the same debug text isTim Potter2002-03-142-11/+11
| | | | | logged. This makes it much easier to use grep on log files when searching for errors.
* Now we have reliable signals take SIGTERM inband.Jeremy Allison2002-03-143-50/+62
| | | | Jeremy.
* getpid() -> sys_getpid()Tim Potter2002-03-147-27/+27
|
* Backed out enumprinters stuff - leave it for another day.Tim Potter2002-03-142-25/+13
|
* Use sys_usleep not usleep.Jeremy Allison2002-03-141-1/+1
| | | | Jeremy.
* Get the current directory after becoming root.Jeremy Allison2002-03-141-1/+1
| | | | Jeremy.
* Fixed bodgy printf arguments in debug statment.Tim Potter2002-03-131-1/+1
| | | | Who would have guessed it - we now use floating point maths in Samba.
* Ensure we attempt to lock at least once. Only sleep if time param set.Jeremy Allison2002-03-131-1/+5
| | | | Jeremy.
* include/smb_macros.h: Don't round up an allocation if the size is zero.Jeremy Allison2002-03-135-10/+44
| | | | | | | | | | | | | | "One of these locks is not like the others... One of these locks is not quite the same" :-). When is a zero timeout lock not zero ? When it's being processed by Windows 2000 of course.. This code change, ugly though it is - completely fixes the foxpro/access multi-user file system database problems that people have been having. I used a *wonderful* test program donated by "Gerald Drouillard" <gerald@drouillard.ca> which allowed me to completely reproduce this problem, and to finally determine the correct fix. This also explains why Windows 2000 is *so slow* when responding to the smbtorture lock tests. I *love* it when all these things come together and finally make sense :-). Jeremy.
* detect SIZELIMIT_EXCEEDED in ldap queries and truncateAndrew Tridgell2002-03-131-0/+4
| | | | | | the problem is, how the heck do we properly handle these? Jerry? It seems that the Win2000 ADS server only returns a max of 1000 records!
* Ensure we never use "" as a domain name (Win9X apparently does this for 'net ↵Andrew Bartlett2002-03-131-1/+6
| | | | | | | | use' duirng login). Picked up from a post to a TNG list by Volker. Andrew Bartlett
* Add "Creator Group" - was in 2.2.x and I'm syncing up the two.Jeremy Allison2002-03-131-0/+2
| | | | Jeremy.
* Fix typo in copyrightAndrew Bartlett2002-03-131-1/+1
|
* I don't need my name on this twice :-)Andrew Bartlett2002-03-131-1/+0
|
* Move the directory creation process outside the 'installbin.sh' script, andAndrew Bartlett2002-03-133-14/+22
| | | | | | | | | | | | | into its own. The 'installdirs' makefile entry didn't do anything on my laptop, so it has been replaced with the section from installbin.sh. This also fixes the bug that we ignored the setting of $(PRIVATEDIR) when making the directories. Finally, link pam_winbind with .po objects only, not a mix of .o and .po (as per Don Mccall's request). Andrew Bartlett
* Remove a stub function I forgot to fill in.Jeremy Allison2002-03-131-6/+0
| | | | Jeremy.
* if we know that the SID is local then don't try via winbinddAndrew Tridgell2002-03-131-0/+5
|
* fixed mapping of SIDs for local usersAndrew Tridgell2002-03-131-1/+1
|
* fixed 2 reconnection bugs in the ADS backend supportAndrew Tridgell2002-03-121-7/+11
|
* get the test for disconnection the right way around!Andrew Tridgell2002-03-121-3/+3
|
* Yet another build fix for popt. I gotta get me one of these picky systems...Jim McDonough2002-03-121-1/+1
|
* Missing comma from systems that have ACLs.Jim McDonough2002-03-121-1/+1
|
* Aack. Don't change too much. vfs.c still won't build, but this should fix ↵Jim McDonough2002-03-121-9/+9
| | | | some other build stuff I screwed up.
* Fix up location of libsmbclient.so so it always goes to /usr/lib.John Terpstra2002-03-121-1/+1
|
* Added wins entry.John Terpstra2002-03-121-0/+2
|
* Removed unused var.Jeremy Allison2002-03-121-1/+0
| | | | Jeremy.
* Ensure, if we're a PDC or BDC, that the SID stored for the domain nameJeremy Allison2002-03-121-10/+70
| | | | | and the machine name are identical. Jeremy.
* Merge of enumprinters vs getprinter naming patch from 2.2Tim Potter2002-03-122-20/+38
|
* Added POSIX ACL layer into the vfs.Jeremy Allison2002-03-126-68/+228
| | | | Jeremy.
* Added tdbbackup.Tim Potter2002-03-121-0/+1
|
* Removed bogus calles to D() debugging function. Perhaps these shouldTim Potter2002-03-111-16/+1
| | | | be replaced by DEBUG() calls?
* always make winbindd try for the PDC first before trying for a BDCAndrew Tridgell2002-03-111-5/+7
| | | | this prevents propogation delays in the SAM between the PDC and BDCs
* Implemented default ACL patch (set inherit acls = true on a per share basis).Jeremy Allison2002-03-114-9/+40
| | | | | | Based on code donated by Olaf Fr±czyk <olaf@cbk.poznan.pl>. Further commit will change to sending via vfs interface. Jeremy.
* Another program converted to popt...smbstatus this time.Jim McDonough2002-03-112-37/+30
|
* only try an ordinary file in lock6Andrew Tridgell2002-03-111-2/+2
|
* put in the ADS DNS hack, but commented outAndrew Tridgell2002-03-111-0/+11
|
* expanded the lock6 test a bit to try lsarpc as wellAndrew Tridgell2002-03-111-11/+17
| | | | this allows us to check that we refuse locking on pipes
* added a LOCK6 test for weird lockingX lock type bitsAndrew Tridgell2002-03-111-1/+40
| | | | warning! this test reboots w2k or wxp
* make sure we give an error for unknown lockingX locktype bitsAndrew Tridgell2002-03-111-0/+7
|
* added cli_locktype() for testing different lockingX lock typesAndrew Tridgell2002-03-111-0/+54
|
* a bit more portability for tdbbackupAndrew Tridgell2002-03-111-1/+2
|