summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
| * Tiny logic simplification: remove an else branchVolker Lendecke2008-09-031-36/+33
| | | | | | | | (This used to be commit 9c4905ed6703a38ff72be5990a036d0a79aebb9f)
| * winbindd: the ad trusted_domains call should return talloced strings.Günther Deschner2008-09-021-2/+5
| | | | | | | | | | Guenther (This used to be commit b57cbf62e8180c8fdb8f541c43358d36d8dbbdfa)
| * Remove unused CLI_DO_RPC macrosVolker Lendecke2008-09-021-48/+0
| | | | | | | | (This used to be commit f5212c64d23a28fa40a14b45a8d1c0181f01a6da)
| * doserr: add WERR_WRONG_PASSWORD.Günther Deschner2008-09-022-0/+3
| | | | | | | | | | Guenther (This used to be commit 977fec76b77639403ba9ab7bb00c57601e23493d)
| * Fix some nonempty blank linesVolker Lendecke2008-09-013-33/+33
| | | | | | | | (This used to be commit 9336cd1c5e5b5d113cd4912d4479dfe609fe261e)
| * Slightly simplify logic: remove an else branchVolker Lendecke2008-09-011-14/+11
| | | | | | | | (This used to be commit 56ecec50130aa948a431427285aed4b28a5647e8)
| * Fix typoVolker Lendecke2008-09-011-1/+1
| | | | | | | | (This used to be commit 544d1fd19a7e85af5f522c5b6b4b68c6beb093a6)
| * Fix Coverity ID 587Volker Lendecke2008-09-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following test program prints "8" on 64-bit :-) static void print_size(const char lenbuf[4]) { printf("sizeof(lenbuf) = %d\n", (int)sizeof(lenbuf)); } int main(void) { const char lenbuf[4]; print_size(lenbuf); return 0; } Jeremy, please check :-) Volker (This used to be commit 9daea0ccfdda58450be3c9a9a94c016f5900c319)
| * Fix Coverity ID 589, dead codeVolker Lendecke2008-08-311-0/+9
| | | | | | | | (This used to be commit 67c0835226e189deba5856710a1dea19ac5f30fd)
| * Remove a duplicate retval checkVolker Lendecke2008-08-311-8/+2
| | | | | | | | | | Jeremy, please check! (This used to be commit 6579005e6490f1a99b3860627ba51decaeb864bd)
| * Fix Coverity ID 592Volker Lendecke2008-08-311-0/+4
| | | | | | | | | | | | | | | | | | The scanner did not figure out that we always have a primary domain, so it complained about us potentially passing a NULL pointer down to set_domain_online_request() where it is dereferenced. Make the code a bit clearer. (This used to be commit e6e8d108f95ed974f98f3f57adcfbbde4e00fad9)
| * Merge branch 'v3-devel' of ssh://jra@git.samba.org/data/git/samba into v3-develJeremy Allison2008-08-2931-763/+2718
| |\ | | | | | | | | | (This used to be commit 882297edc024c146f24fc9f847d2b0b813f93fc7)
| | * libnet_join: streamline logic of libnet_join_post_processing()Michael Adam2008-08-291-9/+11
| | | | | | | | | | | | | | | Michael (This used to be commit 81cc1af1e699e454fbb1d12636d002f845231006)
| | * libnet: fix join by creating keytab after changing the config.Michael Adam2008-08-291-10/+11
| | | | | | | | | | | | | | | Michael (This used to be commit 96d1c780bf9524b929e6026776602a5288aea73d)
| | * wbinfo: add change-user-password command.Günther Deschner2008-08-291-1/+33
| | | | | | | | | | | | | | | Guenther (This used to be commit e572ede9995a66ae452ab25018b8df16101a2c2a)
| | * libwbclient: add wbcChangeUserPassword and wbcChangeUserPasswordEx.Günther Deschner2008-08-293-1/+350
| | | | | | | | | | | | | | | Guenther (This used to be commit 62e7b4aa32051bce34c890cb41270e5fe31111ca)
| | * netapi: fix NetGetJoinableOUs_l.Günther Deschner2008-08-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | It needs to try the dns domain name for the ads connection. Guenther (This used to be commit 918eae8221bb8c24084cad96556e4d8c3685e314)
| | * netapi: fix some warnings in netdomjoin-gui.Günther Deschner2008-08-291-8/+20
| | | | | | | | | | | | | | | Guenther (This used to be commit e69eb09c1819eb4ea4bba7c3b3b0f8b6da789632)
| | * netapi: use NETSETUP join flags in examples.Günther Deschner2008-08-293-15/+12
| | | | | | | | | | | | | | | Guenther (This used to be commit 2f6f888d9cf89abf55767dc43a9e3d5de68bbcfb)
| | * netapi: add NetJoinFlags to public header.Günther Deschner2008-08-291-0/+14
| | | | | | | | | | | | | | | Guenther (This used to be commit 3babf758f49d6b08af8bd41c1dc8bd8de11a3893)
| | * re-run make idl.Günther Deschner2008-08-293-2/+52
| | | | | | | | | | | | | | | Guenther (This used to be commit 11a2eecf2a92dceef2b89bbfa08abcfb71bcaf7a)
| | * netapi: add NetJoinFlags to IDL.Günther Deschner2008-08-291-2/+17
| | | | | | | | | | | | | | | Guenther (This used to be commit 10345cb987f8652f5e94e612910bfcd0478b26bc)
| | * netapi: add info21_to_USER_INFO_11 and support level 11 in NetUserEnum/GetInfo.Günther Deschner2008-08-291-5/+45
| | | | | | | | | | | | | | | Guenther (This used to be commit c022ec38521e7ff655fc12807fcfd0e4f056e18b)
| | * netapi: add info21_to_USER_INFO_4 and support level 4 in NetUserEnum/GetInfo.Günther Deschner2008-08-291-2/+68
| | | | | | | | | | | | | | | Guenther (This used to be commit b3ccc9a447c380e2898606b8f392f8bec9f40dc9)
| | * netapi: add info21_to_USER_INFO_3 and support level 3 in NetUserEnum/GetInfo.Günther Deschner2008-08-291-2/+54
| | | | | | | | | | | | | | | Guenther (This used to be commit 6b56b70a47823ab482f0c2a5fb55a759857b99f0)
| | * netapi: add info21_to_USER_INFO_2 and support level 2 in NetUserEnum/GetInfo.Günther Deschner2008-08-291-2/+50
| | | | | | | | | | | | | | | Guenther (This used to be commit 1f1587423b7e01be552ae7cfc89f1334b32b124a)
| | * netapi: add info21_to_USER_INFO_1 and support level 1 NetUserEnum/GetInfo.Günther Deschner2008-08-291-2/+39
| | | | | | | | | | | | | | | Guenther (This used to be commit 391aaf16272aad09f8e2f1b1afb78a2535c0faaf)
| | * netapi: add info21_to_USER_INFO_23.Günther Deschner2008-08-291-19/+29
| | | | | | | | | | | | | | | Guenther (This used to be commit 62871cb3829f5b9cd15211030fa409dbaf3b906f)
| | * netapi: add info21_to_USER_INFO_20.Günther Deschner2008-08-291-13/+21
| | | | | | | | | | | | | | | Guenther (This used to be commit 93a5844814714cf07341bc2962dfac5c3e51d788)
| | * netapi: add info21_to_USER_INFO_10.Günther Deschner2008-08-291-12/+20
| | | | | | | | | | | | | | | Guenther (This used to be commit 3e0c5d4154a730fd9e4430d3e64f9c7bb654dc54)
| | * netapi: add builtin handle to NetUserEnum.Günther Deschner2008-08-291-2/+15
| | | | | | | | | | | | | | | Guenther (This used to be commit f71b0808bec002f616fc451eddb7e19dd242a138)
| | * netapi: prepare libnetapi_samr_lookup_user to lookup priv levels.Günther Deschner2008-08-291-10/+54
| | | | | | | | | | | | | | | Guenther (This used to be commit f61bf5db5ff4a1d051999712dd76788d6a113545)
| | * re-run make idl.Günther Deschner2008-08-291-0/+1
| | | | | | | | | | | | | | | Guenther (This used to be commit 227fd242d1a3c911b704208694be6d1ffd1aee67)
| | * netapi: add USER_MAXSTORAGE_UNLIMITED to IDL.Günther Deschner2008-08-291-0/+2
| | | | | | | | | | | | | | | Guenther (This used to be commit 71623f853d475eac8b4293d454706c3288bcbc10)
| | * netapi: add NetShareAdd example code.Günther Deschner2008-08-292-1/+117
| | | | | | | | | | | | | | | Guenther (This used to be commit 4ec041e38a7dd2d89b182ab9e03ab85a060778d3)
| | * netapi: implement NetShareAdd_r.Günther Deschner2008-08-291-1/+91
| | | | | | | | | | | | | | | Guenther (This used to be commit d430d2fbd8746c8bcdb16e027d45a939c4976524)
| | * netapi: add NetShareAdd to public header.Günther Deschner2008-08-291-0/+32
| | | | | | | | | | | | | | | Guenther (This used to be commit 5a036a431f4a8c686ddcd72df476acc6befddba0)
| | * netapi: add NetShareAdd skeleton.Günther Deschner2008-08-294-1/+99
| | | | | | | | | | | | | | | Guenther (This used to be commit 6e22bcc1f5cba9bc37ecf193bbc7e031b69134f5)
| | * re-run make idl.Günther Deschner2008-08-293-1/+63
| | | | | | | | | | | | | | | Guenther (This used to be commit 72c660757fd3a5b20ec6de0e4ada361e0aa9e2c4)
| | * netapi: add NetShareAdd to IDL.Günther Deschner2008-08-291-0/+22
| | | | | | | | | | | | | | | Guenther (This used to be commit 58d3a682631aa1fc3d90078db7c301de77cb7e73)
| | * netapi: add samr_rid_to_priv_level().Günther Deschner2008-08-291-0/+15
| | | | | | | | | | | | | | | Guenther (This used to be commit 51afae499974f3ad73a1c9bdfbc41e3130966ebc)
| | * netapi: better point out what levels are unknown in NetUserEnum.Günther Deschner2008-08-291-1/+2
| | | | | | | | | | | | | | | Guenther (This used to be commit d85182aa54b936f8c85c6dcd10d5df613de4bb21)
| | * netapi: add AF_OP constants to public header.Günther Deschner2008-08-291-0/+5
| | | | | | | | | | | | | | | Guenther (This used to be commit a06e21782a4970840f5a8c65b633c9654443161d)
| | * re-run make idl.Günther Deschner2008-08-291-0/+5
| | | | | | | | | | | | | | | Guenther (This used to be commit 1c8bec98456dbd5bcc319a9d7378e4a9399db40d)
| | * netapi: add AF_OP constants to IDL.Günther Deschner2008-08-291-0/+8
| | | | | | | | | | | | | | | Guenther (This used to be commit 2bd24258782811a014a191650883d50d4bf7d0b0)
| | * netapi: add USER_PRIV_* constants to public header.Günther Deschner2008-08-291-0/+4
| | | | | | | | | | | | | | | Guenther (This used to be commit 2274e5d8a8236b15558507289a8a455c15ca2633)
| | * re-run make idl.Günther Deschner2008-08-291-0/+3
| | | | | | | | | | | | | | | Guenther (This used to be commit cb1236dd50d0511d8ad2be30c1d9b7b8191ec83c)
| | * netapi: add USER_PRIV_* constants to IDL.Günther Deschner2008-08-291-0/+5
| | | | | | | | | | | | | | | Guenther (This used to be commit 3bb042d0e14e8a4f1feaace7f310143ff44a933a)
| | * netapi: give more correct error code in NetUserGetInfo.Günther Deschner2008-08-291-2/+8
| | | | | | | | | | | | | | | Guenther (This used to be commit c66651b6fb023e5b0952fd135589eb955f51fa12)
| | * netapi: always return correct account name in NetUserGetInfo/NetUserEnum.Günther Deschner2008-08-291-3/+6
| | | | | | | | | | | | | | | Guenther (This used to be commit 47768bfb01815f7b6bf687fe04ca7d19385aea59)