summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
* | Add a comment about the use of string functions in the modules code, andAndrew Bartlett2003-05-031-4/+9
| | | | | | | | | | | | | | add \n to the end of the non-dlopen case DEBUGs. Andrew Bartlett (This used to be commit ce4ff4cc8e5f5d461797e42b2148b2827c058380)
* | Fix use of uninitialised value in TCONDEV test - found by sun1 on the build farmAndrew Bartlett2003-05-031-1/+1
| | | | | | | | (This used to be commit 0dfeaf4535bb1b2345dfd51208c51ce5069ea154)
* | Now that multi-pdu schannel works and a but in the negotiator has beenVolker Lendecke2003-05-021-2/+2
| | | | | | | | | | | | | | | | fixed I would like to see this tested a bit more. Default the schannel stuff to auto which means 'offer, but do not enforce'. Volker (This used to be commit 7a1b8409bed13d0e7742cbcd3b0fa79b0c671404)
* | Fix uninitialized blobs reported by Luke Howard.Jeremy Allison2003-05-011-0/+6
| | | | | | | | | | Jeremy. (This used to be commit 8dcc00899977a126d5782e44bdae74175ecc0d93)
* | Fix for bugid 51 from Dragan Krnic.Jeremy Allison2003-05-011-5/+5
| | | | | | | | | | Jeremy. (This used to be commit a2af45154d0e1bb76e78fbde1572d4fcd1ba0da2)
* | This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.(This ↵cvs2svn Import User2003-05-012-0/+655
|\| | | | | | | used to be commit a1ffe2a29c0e6be54af09d6647b7f54369d75a1e)
| * *id_to_*id call reshape to return NTSTATUS errorsSimo Sorce2003-05-0116-177/+174
| | | | | | | | | | | | plus internal fixes 1st stage (This used to be commit 6d036761e565bc93964bb3c939d5b7d78d5778a3)
| * Fix disk quotas support on HP/UX (patch by David Nixon)Jelmer Vernooij2003-05-011-1/+1
| | | | | | | | (This used to be commit 908d839b77a03ac07b00b43a3000c8ea53dd5e35)
| * Use ints for the version numbers in the smb_register_*() functions (patch by ↵Jelmer Vernooij2003-05-013-3/+3
| | | | | | | | | | | | metze) (This used to be commit 3895571eeef81db7ce4c71e85b0be5c235b16efd)
* | Fix disk quotas support on HP/UX (patch by David Nixon)Jelmer Vernooij2003-05-011-1/+1
| | | | | | | | (This used to be commit a2c315dea6910e3f83ba2e9bad4312cf35f608da)
* | Turn down some DEBUG()s and remove some duplicate code spotted by dfenwick.Andrew Bartlett2003-05-013-41/+19
| | | | | | | | | | Andrew Bartlett (This used to be commit 542a8b1817d3930e03e08e16e9711cacceb6df61)
* | Make the version numbers ints (patch from metze)Jelmer Vernooij2003-04-304-5/+5
| | | | | | | | (This used to be commit dbe36b4c43dceddea9f14161c6cf7b34709287c8)
* | Refactor existing sock_exec() and socketpair_tcp() functions into their ownPaul Green2003-04-302-94/+1
| | | | | | | | | | | | | | source file. I will be making changes to sock_exec to work on VOS, which has a blocking connect() call, but first I want to get it in its own source file so that it can be called from a test program. (This used to be commit 10bf65d335b7d7076484172faa2b4689ed437552)
* | This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.(This ↵cvs2svn Import User2003-04-301-0/+115
|\| | | | | | | used to be commit 73473310533133d1d88ac86a84e10d85583a6855)
| * Refactor existing sock_exec() and socketpair_tcp() functions into their ownPaul Green2003-04-303-94/+116
| | | | | | | | | | | | | | source file. I will be making changes to sock_exec to work on VOS, which has a blocking connect() call, but first I want to get it in its own source file so that it can be called from a test program. (This used to be commit 2dd18ca0cfd4d793067b9b712554565965db0af1)
| * correctly initiazlize idmap tdb when creationg newSimo Sorce2003-04-304-148/+169
| | | | | | | | | | | | | | few fixes to *id_to_*id functions, we don't set the mapping for algoritmic RIDs, they are resolved in the classic way eliminate getpw* calls from tdbsam (This used to be commit 6a7689cf74cd4d5f29e0b12f4bf8ac3051d49157)
| * pam_smbpass will need at least IDMAP.Andrew Bartlett2003-04-301-1/+1
| | | | | | | | (This used to be commit b05fa6b90a7f5b74824d32b687c17ef6e76f59c1)
| * Get pam_smbpass to compile again (it probably won't link or run, but at leastAndrew Bartlett2003-04-302-5/+3
| | | | | | | | | | it compiles and lets the build farm get on it's way) (This used to be commit 7498d69d9d69f70a4c7511b5032d7d5d2b9c846f)
| * auto-init for utility functionsSimo Sorce2003-04-301-0/+18
| | | | | | | | (This used to be commit db571a9fd7fbce1c13ed652616ad9725db00b49f)
| * forgot to remove getpwnamSimo Sorce2003-04-291-20/+0
| | | | | | | | (This used to be commit 1915ab7b95b2baade0f4293d5a7a96003888d1c9)
| * This is a nice rewrite:Simo Sorce2003-04-2923-371/+191
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SAM_ACCOUNT does not have anymore uid and gid fields all the code that used them has been fixed to use the proper idmap calls fix to idmap_tdb for first time idmap.tdb initialization. auth_serversupplied_info structure has now an uid and gid field few other fixes to make the system behave correctly with idmap tested only with tdbsam, but smbpasswd and nisplus should be ok have not tested ldap ! (This used to be commit 6a6f6032467e55aa9b76390e035623976477ba42)
| * remove convert_smbpasswd and addtosmbpass from tree; people can get them ↵Gerald Carter2003-04-293-93/+1
| | | | | | | | | | | | from 2.2. if they still need them (This used to be commit 000fe6b2f0e87571d2a6f2f19d4f90076eaeee3e)
| * adding ifdef'd code to add alias membership for vampireGerald Carter2003-04-291-0/+138
| | | | | | | | (This used to be commit 21867183e082a4ec7fec64a534677058cba1a598)
| * Some passdb backends really don't like having no primary group - so alwaysAndrew Bartlett2003-04-291-34/+25
| | | | | | | | | | | | | | | | | | | | | | set one - new accounts -> domain users, unless otherwise specified. This moves that logic from pdb_set_sam_sids() into pdb_init_sam_new(), which is called by all the 'new account' creators. (pdb_set_sam_sids() now only deals with the mapping from an existing account) Andrew Bartlett (This used to be commit 2c7b3d9fd5bb327bdbd34ec27b36eb59cbc481af)
| * Change order of parameters to smb_register_passdb()Jelmer Vernooij2003-04-293-3/+3
| | | | | | | | (This used to be commit 63cf5637c16dc770f0ab2f73ff00577c7cd426ee)
| * add version back to lanman string in sessetup replyGerald Carter2003-04-291-1/+5
| | | | | | | | (This used to be commit 4ab1909378695383e7e5bd20898392e6d2166969)
| * Merge Samba 3.0 pdb_ldap from 3.0 into HEAD, so as to allow idra to continueAndrew Bartlett2003-04-291-412/+1591
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | his IDMAP work. This version also works properly (the HEAD version had suffered from bitrot), and should be a good basis to change into the new IDMAP rules. It also includes UTF8 conversions. Included also are the schema changes, and a note about the now very old scripts in examples/LDAP (they don't work for this, or even the previous schema). Andrew Bartlett (This used to be commit 38a8f2b23a12f6a964d447f7904dd722a1ca046c)
| * forgot to add the file where things movedSimo Sorce2003-04-291-0/+189
| | | | | | | | (This used to be commit 3c2963f8e3f98ecae9fe59336c35000cf4d386c5)
| * consolidate idmap code in one placeSimo Sorce2003-04-293-353/+4
| | | | | | | | (This used to be commit f7041ec5d74475013c839b5ea9ecac10322e5e65)
| * Merge 3.0's change to how we add users onto HEAD, including a few other bitsAndrew Bartlett2003-04-293-94/+52
| | | | | | | | | | | | | | of sync-up for the rpc_server/srv_samr_nt.c Andrew Bartlett (This used to be commit 3c867aedd9abc29389f5d049dbc94ada6738d1b0)
| * only call the add_script if the getpwnam_alloc() failsGerald Carter2003-04-291-22/+27
| | | | | | | | (This used to be commit ba1e654a15fa800e56732fe005afd7479c18324b)
| * don't implement any group mapping functions in the guest sam moduleGerald Carter2003-04-292-0/+59
| | | | | | | | (This used to be commit a4056e2cae21e1f7e1aac1414bfa4158947fbfc7)
| * removing printing = SOFTQ since no one knows what it isGerald Carter2003-04-292-95/+0
| | | | | | | | (This used to be commit 7daf5f004273156ae263129b847c601b210f4fdb)
| * ok next_rid out as well local_*id_to*id functionsSimo Sorce2003-04-295-530/+141
| | | | | | | | | | | | | | reverted user making function, did not pass the abartlet test :-) idmap is now fully integrated, we only miss user creation and removal of uid and gid from SAM_ACCOUNT (This used to be commit 67af8c26586c4829166795813a373bf9be27b753)
| * swat need idmap nowSimo Sorce2003-04-281-2/+2
| | | | | | | | (This used to be commit c4ba4db3414a2178a5314291c767d02e3f88525c)
| * new helper functions to create usersSimo Sorce2003-04-281-1/+154
| | | | | | | | (This used to be commit 74826e7ebb62ab09df68bb00fbd6097852ec5b6d)
| * Fixes from Ronan Waide <waider@waider.ie> for large RPC writes.Jeremy Allison2003-04-281-2/+2
| | | | | | | | | | Jeremy. (This used to be commit 30512b7d3ea3470e4aca08638a5c0ea14791a6e7)
| * Use NTSTATUS as return value for smb_register_*() functions and init_module()Jelmer Vernooij2003-04-2835-119/+155
| | | | | | | | | | function. Patch by metze with some minor modifications. (This used to be commit f4576757d1d52a8f1b96894c869bb76450003fd1)
| * Typo in error messageVolker Lendecke2003-04-281-1/+1
| | | | | | | | | | Volker (This used to be commit a1cae680f98a128ab73306196a303d76e41f24c2)
| * Merge memory leak fixes in our trusted domain list from 3.0 to HEADAndrew Bartlett2003-04-281-7/+11
| | | | | | | | (This used to be commit c7f06f3a480feb1c7b1a44d16c05e1c238800b15)
| * Merge compile warning fixes from 3.0Andrew Bartlett2003-04-281-1/+1
| | | | | | | | (This used to be commit c0903951a144b1f0502e77437ea166d7a26393ba)
| * Merge compile and other fixes from 3.0 to HEAD.Andrew Bartlett2003-04-286-39/+48
| | | | | | | | | | | | | | Including smbtorture bugfixes, and a better TCONDEV test. Andrew Bartlett (This used to be commit 52c5806004022f153af7d022afdb3ec7cc0d2548)
| * Perform lp_load() before popt to fix -W option.Tim Potter2003-04-281-11/+11
| | | | | | | | (This used to be commit d20f4bf5d84f435a7b4b692bf33f05f4ec871a50)
| * Merge of -W fixes for bug #39:Tim Potter2003-04-281-10/+8
| | | | | | | | | | | | | | | | >Replace workgroup global variable with lp_workgroup() > >Call lp_load() before parsing command line options so we can override >the workgroup value with the -W switch. (This used to be commit 272d06369d79250b484a22bc7e531eecd03e7c90)
| * Fix compiler warning.Tim Potter2003-04-281-1/+1
| | | | | | | | (This used to be commit 6a783ca81cead3eed556570152608fd7a224f1ee)
| * Getting ready for code that actually writes a registry file out.Richard Sharpe2003-04-281-7/+32
| | | | | | | | (This used to be commit 22e61a7e77eabd462f192fb03b5adb1d07fa7409)
| * Two character tabs - I don't think so.Tim Potter2003-04-281-10/+9
| | | | | | | | (This used to be commit 40d370bec6ef14cfa85e75cdb2f9122110ae9f1d)
| * Return NT_STATUS_UNSUCCESSFUL if the sourcedata and echodata rpcsTim Potter2003-04-281-0/+2
| | | | | | | | | | | | | | return unexpected data. Closes bug #2. (This used to be commit 0c3314ab97331aa709216e7ad2a1a0c8605eb160)
| * Fix number of arguments to asprintf()Jelmer Vernooij2003-04-281-1/+1
| | | | | | | | (This used to be commit 5e4e6a6ed08f1b4fe97bbd91f983039143cc9939)
| * Add 'smbiconv' program - a clone of the 'iconv' utilityJelmer Vernooij2003-04-272-0/+249
| | | | | | | | | | | | that uses samba's internal iconv() functions. Useful for testing purposes. (This used to be commit 674b67198311b4e0fb2d8afd8b56b499286fc370)