summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
* Use strlcpy instead of strncpyVolker Lendecke2007-10-131-12/+8
| | | | (This used to be commit 5e95c548864bc8b075b8343e69a69e1a22c92456)
* Fix an uninitialized variable warningVolker Lendecke2007-10-131-2/+2
| | | | (This used to be commit d0f25bb89a2268c8f789dd362010f8b785489424)
* Fix a segfault with an unknown interfaceVolker Lendecke2007-10-131-1/+7
| | | | | "interfaces = foo" with "foo" not being a known interface segfaulted for me. (This used to be commit 556c33702ce6d6c7cde43ddfe965c78ebc2963d3)
* Also find loopback interfacesVolker Lendecke2007-10-131-1/+1
| | | | | Not sure if a loopback interface is actually a broadcast one. (This used to be commit 76d8dedc368ecb1594780ce58ffee2a35a6f4f73)
* remove unused print_test.c codeStefan Metzmacher2007-10-132-82/+1
| | | | | metze (This used to be commit 9e5ad21e6793981a01f63f2de1c4d496ade0bb54)
* Dummy formatting commit to check I've set up my home gitJeremy Allison2007-10-121-1/+2
| | | | | correctly. (This used to be commit a1166e9e651f4acdcf7926c5d8e9cf0c9108fe71)
* Convert get_peer_addr() to IPv6. Only is_myname_or_ipaddr()Jeremy Allison2007-10-121-55/+112
| | | | | | lefto to do then I can fix the lib/access.c functions. Jeremy. (This used to be commit 3403c6c330b886c86d6d856c3ffc13b043fd6fc1)
* Merge branch 'v3-2-stable' into my_branchJelmer Vernooij2007-10-121-1/+1
|\ | | | | | | (This used to be commit 754671b8be0bf73a9e1fe7ff420a1b7a1cd501b7)
| * Fix valgrind window title.Jelmer Vernooij2007-10-121-1/+1
| | | | | | | | (This used to be commit 4ac867f5588e902358eba7bcb4dbfd431181943d)
* | Revert "Remove superfluous quotation marks around samba version"Michael Adam2007-10-121-1/+1
| | | | | | | | | | | | | | | | | | This reverts commit 016795c550ee0b78fa46c508703fb5e1e40d8f36. These quotation marks are not superfluous at all... sorry! Michael (This used to be commit 3a1b0965229facdeab8ddc68e72bd4c5bbec70ac)
* | Remove superfluous quotation marks around samba versionMichael Adam2007-10-121-1/+1
| | | | | | | | | | | | | | vendor suffix. Michael (This used to be commit 016795c550ee0b78fa46c508703fb5e1e40d8f36)
* | Add become_root/unbecome_root around one call of getsampwsid()Michael Adam2007-10-121-1/+6
| | | | | | | | | | | | | | | | | | | | in create_token_from_username(). This caused set_nt_acl to partially fail in certain circumstances. This is expected to bring an improvement to bug #4308. Michael (This used to be commit e68671b59500d7e1b645c80ee264c49893f8df84)
* | Fix the build WITH_DNS_UPDATES.Günther Deschner2007-10-121-2/+8
| | | | | | | | | | | | | | Jeremy, please have a look. Guenther (This used to be commit 4dfda879a3ad44be7008702b9fbefe3858436118)
* | offsetof() is always present as shown in someStefan Metzmacher2007-10-121-4/+0
| | | | | | | | | | | | | | libreplace testing. metze (This used to be commit 4f084efd6ac39a8347d5cfc73b727940e40150cf)
* | Try and fix segfault found by Guenther on Fedora. FedoraJeremy Allison2007-10-111-2/+5
| | | | | | | | | | | | | | seems to return bogus values for the interface entries on vmnet and tun interfaces. Jeremy. (This used to be commit 12c0b1d82802ccd1b272a8b47ddb7d258e10477c)
* | Add const to the get_peer_addr() and get_socket_addr()Jeremy Allison2007-10-116-22/+24
| | | | | | | | | | | | calls. Use the IPv6 varient for get_peer_addr(). Jeremy. (This used to be commit baf1f52e34ae2465a7a34be1065da29ed97e7bea)
* | Remove bogus commentVolker Lendecke2007-10-111-5/+0
| | | | | | | | (This used to be commit 142b80bf1542f212dff66a3661c13f3f6845067f)
* | Merge commit 'origin/v3-2-test' into my_branchGuenther Deschner2007-10-1153-753/+1411
|\ \ | | | | | | | | | (This used to be commit fbe5edec375c99421d19af086c4f597e70c963b8)
| * | prepare the mkversion.sh infrastructure for git branches in the build-farmStefan Metzmacher2007-10-113-81/+32
| | | | | | | | | | | | | | | metze (This used to be commit 1bf4c7fb2012a81e0b4e3d601a4df42d1113f5ef)
| * | SAMBA_VERSION_VENDOR_SUFFIX doesn't need an extra '-'Stefan Metzmacher2007-10-111-1/+1
| | | | | | | | | | | | | | | metze (This used to be commit b03b4489c27ed0bfd6fd13d4e6d76206e470dcc4)
| * | Added missing is_ipaddress is_ipaddress_v4 not in initialJeremy Allison2007-10-101-1/+1
| | | | | | | | | | | | | | | | | | port from old svn code. Jeremy. (This used to be commit 169c5857b7e7922fe3fffef997ced0e014e925a8)
| * | Add start of IPv6 implementation. Currently most of this is avoidingJeremy Allison2007-10-1046-662/+1363
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | IPv6 in winbindd, but moves most of the socket functions that were wrongly in lib/util.c into lib/util_sock.c and provides generic IPv4/6 independent versions of most things. Still lots of work to do, but now I can see how I'll fix the access check code. Nasty part that remains is the name resolution code which is used to returning arrays of in_addr structs. Jeremy. (This used to be commit 3f6bd0e1ec5cc6670f3d08f76fc2cd94c9cd1a08)
| * | Merge branch 'v3-2-test' of ssh://jra@git.samba.org/data/git/samba into ↵Jeremy Allison2007-10-101-2/+39
| |\ \ | | | | | | | | | | | | | | | | | | | | SAMBA_3_2_0 (This used to be commit 3f1ac564c0ab6d498a47da84b4b5744d8d376f3b)
| | * \ Merge commit 'origin/v3-2-test' into my_branchGuenther Deschner2007-10-111-2/+2
| | |\ \ | | | | | | | | | | | | | | | (This used to be commit 52ca48f1881fc7b6ac9d1252468bb20eee174407)
| * | | | Merge from metze of libreplace header changesJeremy Allison2007-10-102-6/+12
| | |/ / | |/| | | | | | | | | | (This used to be commit d39ce8e37ed81f4a34a148f975874989d8d187a1)
| * | | Merge branch 'v3-2-test' of git://git.samba.org/samba into SAMBA_3_2Jeremy Allison2007-10-101-2/+2
| |\ \ \ | | | | | | | | | | | | | | | (This used to be commit e00ea359d66347a7c6f5d75de1670f788bfdc310)
| * | | | Fix valgrind-found memory overwrite.Jeremy Allison2007-10-101-2/+2
| | |_|/ | |/| | | | | | | | | | (This used to be commit 183df4754b5f18419f4d8fca2c0fa19919174556)
* | | | Rename krb5 locator plugin to "winbind_krb5_locator".Guenther Deschner2007-10-113-8/+8
| |_|/ |/| | | | | | | | | | | Guenther (This used to be commit 6ae4066bbb59536852036394ffdb89121198a39f)
* | | Merge commit 'origin/v3-2-test' into my_branchGuenther Deschner2007-10-111-2/+2
|\ \ \ | | |/ | |/| | | | (This used to be commit 83fe2b4261f0357a62ea93b806a14225173f4945)
| * | Set -test in the vendor versionGerald (Jerry) Carter2007-10-101-2/+2
| |/ | | | | | | (This used to be commit 1e048ef75eba99d4bce9e44a4e2a3b95657e2e3d)
* / Display ace_objects in security descriptors.Guenther Deschner2007-10-111-2/+39
|/ | | | | Guenther (This used to be commit 5fa3fc81b765f1d9682170de13d2e10994fdd889)
* [GLUE] Rsync SAMBA_3_2_0 SVN r25598 in order to create the v3-2-test branch.Gerald (Jerry) Carter2007-10-10204-25617/+10005
| | | | (This used to be commit 5c6c8e1fe93f340005110a7833946191659d88ab)
* r25598: Add missing become_root/unbecome_root around calls of add_aliases.Michael Adam2007-10-101-0/+4
| | | | | | | | | | | This triggered a "cannot access LDAP when not root"-bug with "passdb backend = ldap" and "winbind nested groups = yes". This *might* be a step towards fixing bug #4308, since the failure was observerd when triggered by acl code. Michael (This used to be commit ba8c48244e140403b728d9a2ca297b40e8888964)
* r25593: Add missing security_secinfo bits as seen while managing security ↵Günther Deschner2007-10-103-1/+13
| | | | | | | | | descriptor inheritance with regedit. Guenther (This used to be commit 534ee13596cd4d95b61ae973823b3041bd889216)
* r25592: Allow to set sec_info for registry security descriptor queries.Günther Deschner2007-10-101-8/+16
| | | | | Guenther (This used to be commit 09e10d1d2936fd8c841de2a3323a1d0a1f6bd815)
* r25587: Fix getaddrinfo detection code. From Timur.Jeremy Allison2007-10-101-1/+9
| | | | | Jeremy. (This used to be commit 3824a10fbcc3e061d569b0f74501ce97ec0a4414)
* r25584: don't run WINBIND tests untill the faked users work with a running ↵Stefan Metzmacher2007-10-101-0/+1
| | | | | | | winbindd metze (This used to be commit a3ce4d7c32de0911ef61b5185edae2d25907875d)
* r25583: it makes no sense to run blackbox.kinit against samba3Stefan Metzmacher2007-10-101-0/+1
| | | | | metze (This used to be commit a9c6d8fa8b45dadc819b8eb315ca093263f0b0fe)
* r25575: Document S-1-5-12 (restriced code sid).Günther Deschner2007-10-101-1/+7
| | | | | Guenther (This used to be commit 109b09edef4bcad06c3b850edf7db74419c3ad78)
* r25573: Add my (C) as wellSimo Sorce2007-10-101-0/+1
| | | | (This used to be commit a024e27e7136deb87aeed995348a1c494a850ce6)
* r25572: Fix warnings (values are always true).Jelmer Vernooij2007-10-101-6/+3
| | | | (This used to be commit 2c77c3c58e75d6a9c08d723976c37d899a53c99a)
* r25571: split up child_dispatch_table into domain, idmap and locator tablesStefan Metzmacher2007-10-105-41/+87
| | | | | metze (This used to be commit abbb36a37c1dba2218a6c7ec31739eba5f250127)
* r25570: move code of the locator child into its own fileStefan Metzmacher2007-10-103-64/+91
| | | | | metze (This used to be commit 2dbc168e543b84d05b85bc0a44aa8fc10adc4511)
* r25569: move more idmap stuff into winbindd_idmap.cStefan Metzmacher2007-10-102-12/+12
| | | | | metze (This used to be commit 953229f040580071f6ee09413f67f7edd3227728)
* r25568: move idmap related functions into their own file.Stefan Metzmacher2007-10-103-741/+779
| | | | | | | | the final goal is to have 3 child dispatch tables 'domain', 'idmap' and 'locator' instead of one. metze (This used to be commit 97c63f1b95190f3bcc1d9f34765934c97ffb720c)
* r25567: make do_async() non staticStefan Metzmacher2007-10-101-6/+6
| | | | | metze (This used to be commit badc714d7f82f8d7c21ecfeab137efb57e970210)
* r25565: Fix unintended consequence change for IPv6 noticedJeremy Allison2007-10-101-1/+6
| | | | | | | | | by Volker. We used to return 0.0.0.0 for the text address of an uninitialized socket - ensure we still do so. Once uninitialized address is as good as any other. Jeremy. (This used to be commit 2827bbe0f853d413b6fcb0eb676048c041cea713)
* r25564: Pass sharename to delete_share_security()Volker Lendecke2007-10-103-9/+11
| | | | (This used to be commit d100bfffe2a503b8820889faedc6ed57100ca7af)
* r25563: Show which local-substitute subtest failsVolker Lendecke2007-10-101-28/+32
| | | | (This used to be commit 2b3392df1024539d326fb0f560ab2b0a29124a06)
* r25561: Make use of [un]marshall_sec_descVolker Lendecke2007-10-103-81/+73
| | | | | Minor cleanup only (This used to be commit 4dc4364b68b6b68ae0951a84475e2f9ea8cb1f8c)