summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Start removing hand-written lsa marshalling code (namelyGünther Deschner2008-01-143-307/+0
| | | | | | | | | | | | | | | | | | rpccli_lsa_open_trusted_domain_by_name, rpccli_lsa_query_trusted_domain_info_by_sid and rpccli_lsa_query_trusted_domain_info_by_name). Guenther (This used to be commit f2fb3473455f20e7314a9d33f5a1c923d3057d97)
| * Use some more pidl generated LSA rpc in rpcclient.Günther Deschner2008-01-141-59/+46
| | | | | | | | | | Guenther (This used to be commit 153e4dd162423a846dbd4a9a1be1fd747792bdbf)
| * Fix "make test_shlibs": it showed unresolved symbols for -lwbclient.Michael Adam2008-01-141-4/+7
| | | | | | | | | | Michael (This used to be commit 9a435b510f8ccfd0ca3b3d100d6176e643273578)
| * Revert ""make test_shlibs" shows unresolved symbols for -lwbclient."Günther Deschner2008-01-141-2/+1
| | | | | | | | | | This reverts commit 0093f618e91f7dcc69d57dbd09d23acc614999aa. (This used to be commit ad6cb9afc9794b226e3453d36865edfe5a15f572)
| * "make test_shlibs" shows unresolved symbols for -lwbclient.Günther Deschner2008-01-141-1/+2
| | | | | | | | | | Guenther (This used to be commit 0093f618e91f7dcc69d57dbd09d23acc614999aa)
| * samba3 already has tdb_validate()Andrew Tridgell2008-01-142-43/+0
| | | | | | | | (This used to be commit 9f002eeff9bcf33a00e5641cb14338e866a17afe)
| * merged tdb fix from ctdb treeAndrew Tridgell2008-01-143-0/+123
| | | | | | | | (This used to be commit c91e9c785b5bf4b0c479edf8eb33da22bf615387)
| * Reset the failed counter in test_wbinfo_s3.sh.Michael Adam2008-01-141-0/+2
| | | | | | | | | | Michael (This used to be commit 3eedb8928413da102446b76aa64d1feaecb95b52)
| * Fix a syntax error in script/tests/test_local_s3.sh .Michael Adam2008-01-131-1/+1
| | | | | | | | | | | | | | This will reveal the currently breaking tdbtorture to the build farm... Michael (This used to be commit 50f65c3c5500da8d657d5fc340e666ee8cfe148e)
| * Add and modify comments in net_conf.cMichael Adam2008-01-131-8/+42
| | | | | | | | | | Michael (This used to be commit b3afc8391d40745328172ba012f0ffc166d75aa9)
| * Add explicit creation of shares to net conf import function.Michael Adam2008-01-131-0/+4
| | | | | | | | | | | | | | It has been removed from libnet_conf_set_parameter(). Michael (This used to be commit b5c533b06cba9a8ffd28a1fb3bc56ab248340775)
| * Make use of the new libnet_conf_delete_global_parameter() function.Michael Adam2008-01-131-1/+1
| | | | | | | | | | Michael (This used to be commit aed01fd28c8e896e993239cbe9b2681132ddf980)
| * Add a function libnet_conf_delete_global_parameter() to libnet_conf.cMichael Adam2008-01-131-0/+21
| | | | | | | | | | | | | | Create the [global] section if it does not yet exist. Michael (This used to be commit 90fa2981c949e21f66a44d634ebe9d661819f0a3)
| * Add a function libnet_conf_get_global_parameter() to libnet_conf.cMichael Adam2008-01-131-0/+25
| | | | | | | | | | | | | | It creates the [global] section if it does not yet exist. Michael (This used to be commit 627a29b690c30f1096a4746186089cd9a1c92407)
| * Move libnet_conf_set_global_parameter() inside libnet_conf.cMichael Adam2008-01-131-30/+23
| | | | | | | | | | | | | | | | | | Also remove the "convenience function" section comment. The set_global_parameter function now has a right to exist in the api. Michael (This used to be commit fd99c1804ae04b7c2a2b0a605e83ba88fa362edb)
| * Add a comment header to libnet_conf_set_global_parameter().Michael Adam2008-01-131-0/+6
| | | | | | | | | | Michael (This used to be commit c050b148d00c79571ef0e85c6e7c86d551ca6efd)
| * Add auto-adding of [global] to libnet_conf_set_global_parameter().Michael Adam2008-01-131-1/+12
| | | | | | | | | | Michael (This used to be commit ad2497cfac90b2e91be6995931629453fd6ed5fa)
| * Remove auto-generation of missing share from libnet_conf_set_parameter().Michael Adam2008-01-131-4/+2
| | | | | | | | | | | | | | | | | | Günther, I wanted to have this as atomic as possible. I will add this behaviour to libnet_conf_set_global_parameter() next with the justification that [global] should exist transparently. Michael (This used to be commit e2b34e9c028d712c7c8b22aade2c11d347ae176d)
| * Fix the max_dead_record calculationsVolker Lendecke2008-01-131-4/+1
| | | | | | | | (This used to be commit 4aaf4e7e73a5c7fa97ef730fbff5c7cb12df2d6c)
| * Fix Compiler warnings by including the proper header.Michael Adam2008-01-131-2/+1
| | | | | | | | | | Michael (This used to be commit edaf52a301a38824c8beb30c49fba27c8fb0461a)
| * Introduce a libnet_conf context created by libnet_conf_open().Michael Adam2008-01-136-128/+328
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The libnet_conf_ctx stores the information necessary to interoperate with the configuration. It is created by calling libnet_conf_open() and destroyed by calling libnet_conf_close(). The context is passed to all the libnet_conf functions. It currently stores the token to access the registry. Later, it could store more data, e.g. the server to connect to, credentials, and so on. For support of other backends than registry or support of remote configuration, only the open function will have to be changed. In net_conf, the calls to the actual net_conf functions is wrapped into a function that calls libnet_conf_open()/_close(). Thus an individual variant of net_conf_runfunction2() and functable2 is used to cope with functions being called by the wrapper with the additional libnet_conf_ctx argument. Michael (This used to be commit c2a9346faa26e79af5948197a1b322e545f0ed09)
| * idl: Replace non-standard "declare" keyword with typedef and regenerate.Jelmer Vernooij2008-01-1317-58/+97
| | | | | | | | (This used to be commit 7e75acfdd1910b3b5908c02d5f343f014eb77841)
| * Don't early delete the share mode tdb dataVolker Lendecke2008-01-121-2/+0
| | | | | | | | | | We now refer directly to the file name in the tdb data, so don't delete it. (This used to be commit 71de4946cf00cf8b7bb2f2d92832166bee12e84a)
| * Trivial simplificationVolker Lendecke2008-01-121-5/+1
| | | | | | | | (This used to be commit 616bc34744487450edd47e212a29c0f57eabb722)
| * Remove an unused variableVolker Lendecke2008-01-121-1/+0
| | | | | | | | (This used to be commit 24e719a1d432d5de022ab903457df0dd67c24b85)
| * Get the inbuf on talloc_tos()Volker Lendecke2008-01-121-1/+1
| | | | | | | | (This used to be commit 883f7415769ad1e714f636e9d6fbd1f075e69d1e)
| * Convert OpenDir to talloc, use talloc_tos()Volker Lendecke2008-01-123-76/+61
| | | | | | | | | | This cuts some mallocs on NtCreate&X (This used to be commit 8e64107b7846d8f9cce71aabc95b28b7488d01ce)
| * Restructure dbwrap_rbtVolker Lendecke2008-01-121-59/+127
| | | | | | | | | | | | | | In this low-level code, play tricks to reduce the number of allocations to the possible minimum. I would not recommend this for higher-level code, but here it pays off. (This used to be commit 71b1e6ff1595fbaa8dd49b996c45541531c7e98c)
| * One more empty lineVolker Lendecke2008-01-121-2/+2
| | | | | | | | (This used to be commit 10b6f52910b4d29da4ea74740a174654dd1d8e8e)
| * delete on close even prevents stat opensVolker Lendecke2008-01-121-6/+6
| | | | | | | | (This used to be commit 85fe7f3f6ed4aae76e5cf31ab689b2dfacfd74de)
| * There's no point in calling FLOCK on a non-existing fdVolker Lendecke2008-01-121-7/+9
| | | | | | | | (This used to be commit 9ff79f231f1206631662b5c521ecddf5df9141c0)
| * CID 458. Don't leak dlopen handles on failing to loadJeremy Allison2008-01-121-0/+2
| | | | | | | | | | | | module. Jeremy. (This used to be commit 8809eaeb154ea12543455f589e31172dc905d83a)
| * Fix CID 469. new_acct can't be NULL here.Jeremy Allison2008-01-121-2/+1
| | | | | | | | | | Jeremy. (This used to be commit c79e9414c4baed6e61fc6a3f766395b873bcc4ea)
| * Fix CID 470. resolve_order can't be NULL here so simplify code.Jeremy Allison2008-01-121-10/+3
| | | | | | | | | | Jeremy. (This used to be commit 2e75f3ecdf9890b9d7d4bd03f3fa15ef74816d5d)
| * Fix CID 475. work should not be checked against NULLJeremy Allison2008-01-111-2/+2
| | | | | | | | | | | | here as it can never be null. Jeremy. (This used to be commit ecb52f50fe3ec8beda48b6c88e9a3ae5a6a98d52)
| * Fix CID 476. Ensure a valid pac_data pointer is always passed toJeremy Allison2008-01-113-5/+4
| | | | | | | | | | | | ads_verify_ticket as it's always derefed. Jeremy. (This used to be commit 0599d57efff0f417f75510e8b08c3cb7b4bcfcd8)
| * Coverity 512, uninitialized var.Jeremy Allison2008-01-111-2/+2
| | | | | | | | | | Jeremy. (This used to be commit 1b7cc80c61ccbf766801080f5a3f0260f40ccc17)
| * Stop Coverity complaining about uninitialized variables.Jeremy Allison2008-01-111-3/+3
| | | | | | | | | | Jeremy. (This used to be commit 041f1d298c1e72adb263b32f454cdf3603e45416)
| * Fix CID 498. Ensure we don't prs_mem_free an uninitializedJeremy Allison2008-01-111-1/+6
| | | | | | | | | | | | prs_struct. Jeremy. (This used to be commit 7b9d9fba230b9e61079869a6a2751cda37fb8a9e)
| * Fix CID 505 - don't copy uninitialized memory.Jeremy Allison2008-01-111-0/+1
| | | | | | | | | | Jeremy. (This used to be commit 0d2c77e8d3a83f2c5e78fa076f22919ef9d124b9)
| * Fix CID 523 - wrong null deref check.Jeremy Allison2008-01-111-1/+1
| | | | | | | | | | Jeremy. (This used to be commit 05cadffeab38ca9df7ffd46785b536266c4438c4)
| * Fix CID 524 - reference before allocation fail null check.Jeremy Allison2008-01-111-1/+1
| | | | | | | | | | Jeremy. (This used to be commit a5cd3c9b65538588a6c982c6d20022e7476cf3de)
| * Ensure we don't access an uninitialized variableJeremy Allison2008-01-111-1/+1
| | | | | | | | | | | | (CID 535 - actually false but easy to shut up :-). Jeremy. (This used to be commit 4038bb3a9485943db58d9fe30947e11522ce283d)
| * Merge branch 'v3-2-test' of ssh://jra@git.samba.org/data/git/samba into ↵Jeremy Allison2008-01-11111-12779/+20175
| |\ | | | | | | | | | | | | | | | v3-2-test (This used to be commit 08645826817d42c9d4b42ea0fd5e633d7fd08d35)
| | * Fix some indents.Günther Deschner2008-01-121-2/+3
| | | | | | | | | | | | | | | Guenther (This used to be commit 57368f883fb217b4196858bb2255c0eea59a8917)
| | * Call dsgetdcname when we have no specific dc defined for joining.Günther Deschner2008-01-121-0/+27
| | | | | | | | | | | | | | | Guenther (This used to be commit 40e8caa2d81168be3e48ececf5746d8f659a96d6)
| | * Fix some error strings in libnet_join.Günther Deschner2008-01-121-1/+6
| | | | | | | | | | | | | | | Guenther (This used to be commit 8af80976a3a8dd9d02a6763e48b2c1d8003ae4dd)
| | * Add appropriate error code when pre-creating accounts in ous isnt supported ↵Günther Deschner2008-01-121-2/+2
| | | | | | | | | | | | | | | | | | | | | by DC. Guenther (This used to be commit 4a7acf4a2374138b20a5cdebdcc721668bbd865b)
| | * For libnet_join error string functions, make sure not to overwrite last ↵Günther Deschner2008-01-121-10/+10
| | | | | | | | | | | | | | | | | | | | | status string. Guenther (This used to be commit a9b76c9e2d93c8aa482dbee54f29d7e1503abe4f)
| | * Merge all ads related calls in libnet_join_post_processing_ads().Günther Deschner2008-01-121-32/+49
| | | | | | | | | | | | | | | Guenther (This used to be commit b76250f1cf7238613658901b961d68a0da592712)