summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
* Fix the mp3 rename bug - also tidy up our open code and remove the specialJeremy Allison2002-03-2311-209/+314
| | | | | | cases for rename and unlink. Had to add desired_access into the share mode record. Jeremy. (This used to be commit 3b1b8ac43535fb0839c5474fa55bf7150f6cde31)
* Stomped on some header file version numbers that have crept back in.Tim Potter2002-03-229-16/+9
| | | | (This used to be commit e66bdf1229ba84f64c19e817e2c4081dbbf0bee8)
* Make debug statment less confusing.Tim Potter2002-03-221-2/+5
| | | | (This used to be commit 301a7f56dd3e7160147da656ff521671d04fe291)
* cut and paste inserted spaces instead of tab. Some versions of make don'tHerb Lewis2002-03-221-1/+1
| | | | | like this (This used to be commit c86d266d6eb665a6182f10d8acf80aadb3b6e39e)
* Added enumerate trusted domains and check secret.Tim Potter2002-03-221-1/+112
| | | | | Added configuration dictionary to retrieve smb.conf parameters. (This used to be commit 4d31151977f358c50986131dbd311c3ee69e9286)
* add a -n maxloops option so this can be run in a script and end after aHerb Lewis2002-03-221-1/+8
| | | | | certain number of iterations. (This used to be commit bdac7cb9c5bdd52db06b2507d8660bc1c9debea5)
* make install should also install the default dat files from codepagesHerb Lewis2002-03-212-1/+27
| | | | | | directory so we don't keep getting these stupid error messages about incorrect size for valid.dat upcase.dat and lowcase.dat (This used to be commit 4af0c7a93f626dde33fd737618c2b786f83046c7)
* Missed a couple of fetch/store_ints.Jeremy Allison2002-03-211-4/+4
| | | | | Jeremy. (This used to be commit 51189e62a7f20db1835a54c7af1e39f4712c0b95)
* Make winbindd_idmap tdb endian independent. This is very important forJeremy Allison2002-03-214-111/+53
| | | | | | | | | sharing between machines with rsync. Finally removed tdb_store_int/tdb_fetch_int. Now only tdb_store_int32/tdb_fetch_int32 which are endian independent are allowed. Jeremy. (This used to be commit 1c4a00dcc13f4a7c5876a5cf63ca730190d1132e)
* When upgrading from an old idmap tdb, remember to overwrite the reverseJeremy Allison2002-03-211-0/+5
| | | | | | | mapping as well as the forward one. Found this in doing the backport to 2.2.x. This is *essential* to upgrade an old idmap file to a new one. Jeremy. (This used to be commit 980355de0c9d0d1116b29b0a5be98d0b277f24dc)
* merge fix for core dump when called with no args from 2.2Herb Lewis2002-03-211-1/+1
| | | | (This used to be commit 8b38cca631a7434fcce0686c8e41c986a0a36a21)
* Fix stupid typo !Jeremy Allison2002-03-211-2/+2
| | | | | Jeremy. (This used to be commit d0b58f66edeac516bde2dff79ab5cf529c37954b)
* add .proto.checkHerb Lewis2002-03-211-0/+1
| | | | (This used to be commit 3e602671e2b75b29e85b66cdf4f60fe70cc52701)
* update usage message with other options. Add a -d debuglevel optionHerb Lewis2002-03-211-1/+11
| | | | (This used to be commit 32d5dc824ab26c140feb8041314783caab622c65)
* must use native endian index when creating default valid.dat table so itHerb Lewis2002-03-211-2/+2
| | | | | is the same on big and little endian systems. (This used to be commit 6fa09ee88143882abcc51de05002261db767d775)
* return . and .. first in readdir - this fixes masktest on IRIX whichHerb Lewis2002-03-211-1/+13
| | | | | returns . then single letter files then .. then all other files. (This used to be commit d4d9361eec11f50c780ed4c79bc9775ac24d8c0e)
* There is no reason we can't join a domain with secuirty=user. In fact weAndrew Bartlett2002-03-211-5/+0
| | | | | | | need to when we are a BDC or a PDC doing a self-join. Andrew Bartlett (This used to be commit 996cd3a0979a92b087003982bc61796a8090a787)
* make net ads info work with -SAndrew Tridgell2002-03-211-4/+5
| | | | (This used to be commit 57645fd85b7789d7807a5ffb5b2572c6d5f9e3de)
* Compile fix for --with-profiling-dataTim Potter2002-03-211-0/+2
| | | | (This used to be commit 1ae07c42a449f4d4049c15f349f0829b73c12b5e)
* Don't leak memory on failure.Andrew Bartlett2002-03-211-1/+3
| | | | (This used to be commit 438f028fc45ee6c5b12fa960beabea4b5fdcff38)
* Make sure to initaliase SAM_ACCOUNT pointers to NULL, otherwise pdb_init_sam()Andrew Bartlett2002-03-212-6/+6
| | | | | | | fails. Andrew Bartlett (This used to be commit 56009ffbaa00259d15f286248a7ab73c55371819)
* fixed the secondary group mappings for ADS usersAndrew Tridgell2002-03-211-8/+56
| | | | (This used to be commit be399f5823bb8dfe6cc28d58aaeceb51f1b7382b)
* merge from APPLIANCE_HEADGerald Carter2002-03-201-12/+1
| | | | (This used to be commit 9282aa02d44ae7a7688e8399b397aae35f73ddd1)
* Ensure we don't do lp_servicename()'s in tdb traverse as thisJeremy Allison2002-03-201-5/+7
| | | | | | allocates lots of memory. Jeremy. (This used to be commit fbc8c6a1096ec829f48b403239f105065bf155b1)
* Print queue entries *must* have queue names, not numbers - numbers areJeremy Allison2002-03-202-9/+32
| | | | | | | not identical between different smbds (mr potter, come here and take your medicine.... :-). Jeremy. (This used to be commit 230941d2fbb746d39c00e482e7f600c68aa45efa)
* John's patch changed the size of a structure stored in the tdb - weJeremy Allison2002-03-201-1/+1
| | | | | | must thus update the versionid of the tdb. Jeremy. (This used to be commit c5230a5387d6ef57f89f4224b75de84b18c109ff)
* HEAD only fix for truncate from Alexander Bokovoy <a.bokovoy@sam-solutions.net>.Jeremy Allison2002-03-201-1/+1
| | | | | | This code needs replacing with the trans2.c from 2.2.x. Jeremy. (This used to be commit bc8d4b98807ece734db3e1c3a2baabf4b28e7b4f)
* Make ldapsam compile again.Andrew Bartlett2002-03-201-20/+0
| | | | (This used to be commit 520c8626dc238a1e338635981d1b41950f2219b6)
* BUFFER_SIZE Should be 128k if large read write tests are to work.Jeremy Allison2002-03-201-0/+5
| | | | | Jeremy. (This used to be commit 2be9b253ad40e125169725ea79e6723cb40c5e6a)
* Add assertions that kill() is never accidentally passed a non-positiveMartin Pool2002-03-204-4/+15
| | | | | | | | | | pid. This follows a bug in rsync where it would accidentally kill(-1), removing all the user's processes. I can't see any way this would directly happen in Samba, but having the assertions seems beneficial. http://cvs.samba.org/cgi-bin/cvsweb/rsync/util.c.diff?r1=1.108&r2=1.109&f=h (This used to be commit 098905bea29c7d5b886809d431294ddf2fc1e152)
* Actually use flags passed in PYTHON_CFLAGS variable.Tim Potter2002-03-201-21/+33
| | | | | | | Use py_common.c in winbind extension module for correct initialisation. Some reformatting. (This used to be commit b1b7ae8bcfafc92c2d475908f4220f3f1ff941a1)
* Added enum domain users and enum domain groups.Tim Potter2002-03-201-22/+77
| | | | (This used to be commit ba0624d0c397d49b032f34727c910c0be7014813)
* Pass $(CFLAGS) and $(CPPFLAGS) to python compile instead of $(FLAGS)Tim Potter2002-03-201-1/+1
| | | | (This used to be commit 8e4bb2f8a05b37ba508eefe0d0d3f4db103a4418)
* Added name_to_sid and sid_to_name functions.Tim Potter2002-03-201-1/+136
| | | | (This used to be commit 5e955b5fcc53b80238bbc178ca0bcd8b3e81c05f)
* Remove nsswitch from include directories.Tim Potter2002-03-201-2/+4
| | | | (This used to be commit 19dd8ba8267320c0f219639abe3aa701b69e5c56)
* Cache call to winbind separator.Tim Potter2002-03-201-46/+56
| | | | | | | Some random reformatting and cleanup. Display output of wbinfo -s using actual winbind separator. (This used to be commit 099f8c5dfdb150b025e29d5c8ca060f1ee1c0145)
* resetprinter merge from SAMBA_2_2Gerald Carter2002-03-203-13/+36
| | | | (This used to be commit 88d8897e21749f177952b264031aa386bbbeaaeb)
* Ignore autogenerated setup.pyTim Potter2002-03-201-0/+1
| | | | (This used to be commit b06fc0cc84a0ba7cfb19c601682351b11a27364c)
* Initial version.Tim Potter2002-03-208-0/+1734
| | | | (This used to be commit d35770d06f7bc396cf32337a4e1104b5fe8a3ca8)
* Correctly increment offset in cli_smbwrite.Jeremy Allison2002-03-202-9/+25
| | | | | Jeremy. (This used to be commit 5b04b5f1df3ee509e7314064966be09e2202b0ef)
* Allow a zero rid in pdb_smbpasswd. When given a zero rid the pdb backendAndrew Bartlett2002-03-201-1/+3
| | | | | | | should chose the next available RID. For smbpasswd it just means using the algorithm, but other backends can do somthing more useful. Andrew Bartlett (This used to be commit 0f0f87e6c31b468368c5a4729db892622e616cac)
* Test against W2K that we're doing large read/writes correctly (we are).Jeremy Allison2002-03-201-0/+9
| | | | | | At least with 14 word writes. Jeremy. (This used to be commit 24ef6258a16e6b4673f1088d64b79bddcd268df5)
* Ensure we get a real fd when opening for set file allocation.Jeremy Allison2002-03-201-1/+1
| | | | | Jeremy. (This used to be commit 00cabb2346fb11c5568b6c7a038c313ae293a0c2)
* Merge of Richard's lookupsid fix.Tim Potter2002-03-201-1/+4
| | | | (This used to be commit 3c587384cbe5e10f7fa46f6996581b088dead7f5)
* Fix for debug typo.Jeremy Allison2002-03-201-1/+1
| | | | (This used to be commit 5b43519219991fe14c8ce1993c16557bf5ceccb4)
* Remove the "stat open" code - make it inline. This should fix theJeremy Allison2002-03-2010-256/+140
| | | | | | | | | bugs with opening and renaming mp3 files, also the word rename problems that people have had for a while. Needs a make clean :-) make. Also added JohnR's printing fix. Jeremy. (This used to be commit 504e5ef0494c54efbd0357e334cb2aa5a9eb9c14)
* Merge from app-head:Tim Potter2002-03-201-2/+2
| | | | | > Don't put two copies of the server name in construct_printer_info_1() (This used to be commit 47b1003bc5a069e84cb20df507022e5ff3e93832)
* Patch to configure.in and Makefile.in for Python extensions.Tim Potter2002-03-191-0/+41
| | | | (This used to be commit 4d172b712fc2be697db5d1dbccff29ad5708eeee)
* Merge JohnR's fix.Jeremy Allison2002-03-191-5/+10
| | | | | Jeremy. (This used to be commit d5fd1fd859cec3076d2f01ed234314ea8d80a753)
* the beginning of a test to determine and display a servers propertiesAndrew Tridgell2002-03-191-0/+31
| | | | | just shows capabilities at the moment (This used to be commit 76fe90343c4ca76ad58c7b31a1e3235926fd6c75)