summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Let rpccli_samr_chgpasswd3 use rpccli_samr_ChangePasswordUser3 internally.Günther Deschner2008-02-073-73/+85
| | | | | | | | Guenther
| * Use pidl for _samr_ChangePasswordUser3().Günther Deschner2008-02-072-58/+42
| | | | | | | | Guenther
| * Re-run make idl.Günther Deschner2008-02-075-14/+56
| | | | | | | | Guenther
| * Fix IDL for samr_ChangePasswordUser3().Günther Deschner2008-02-071-2/+2
| | | | | | | | Guenther
| * Add cmd_samr_query_aliasinfo command to rpcclient.Günther Deschner2008-02-071-0/+110
| | | | | | | | Guenther
| * Re-run make idl.Günther Deschner2008-02-075-10/+31
| | | | | | | | Guenther
| * Fix IDL for samr_QueryAliasInfo().Günther Deschner2008-02-071-1/+1
| | | | | | | | Guenther
| * Re-run make idl after fixes for wkssvc_NetrGetJoinableOus{2}.Günther Deschner2008-02-074-126/+136
| | | | | | | | Guenther
| * wkssvc.idl: fix idl for wkssvc_NetrGetJoinableOus[2]()Stefan Metzmacher2008-02-071-2/+10
| | | | | | | | metze
| * Re-run make idl after metzes fixes for multilevel and embedded pointers.Günther Deschner2008-02-077-458/+799
| | | | | | | | | | | | | | Thanks metze! Now we can move a lot more opcodes to use pidl generated marshalling. Guenther
| * Make operator precedence very clear.Jeremy Allison2008-02-061-1/+1
| | | | | | | | Jeremy.
| * Add configure check for LBER_LOG_PRINT_FN - to intercept ldap debug.Michael Adam2008-02-062-2/+17
| | | | | | | | | | | | | | | | Use the resulting HAVE_LBER_LOG_PRINT_FN to determine whether we can use it in init_ldap_debugging to intercept LDAP debug output and print it out in the samba logs (controlled with "ldap debug level"). Michael
| * Add support for LDAP debug output in Samba log file.Michael Adam2008-02-063-1/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Logging of the ldap libraries appears with a [LDAP] prefix inside the samba logs. This is controlled by two new parameters: * "ldap debug level" sets the debug level of the ldap libraries. It is the bit-field as understood by the openldap server. * "ldap debug threshold" is the samba debug level at which ldap logging appears inside the samba logs. This probably needs some configure tests since it makes use of the LBER_OPT_LOG_PRINT_FN option to redirect the debug output of the ldap libraries. Michael
| * Don't use the deprecated form of AC_INIT.Michael Adam2008-02-061-1/+4
| | | | | | | | | | | | Fill in the project name and email address instead. Michael
| * Change the file time before we change the file mode.Alexander Bokovoy2008-02-061-6/+6
| | | | | | | | | | | | This doesn't matter for most applications, but for offline files it matters as it allows you to set files offline from windows clients even with HSM systems that refuse to offline newly created files. Merge from Tridge's v3-0-ctdb tree.
| * Allow actual call to set file offlineAlexander Bokovoy2008-02-061-12/+20
| | | | | | | | | | Dos mode calculation was masking out FILE_ATTRIBUTE_OFFLINE so that code to set file offline was never called before. Merge from Tridge's v3-0-ctdb git tree.
| * Merge branch 'v3-2-test' of ssh://git.samba.org/data/git/samba into ↵Alexander Bokovoy2008-02-0696-8964/+3761
| |\ | | | | | | | | | dmapi-integration
| | * Merge branch 'v3-2-test' of ssh://jra@git.samba.org/data/git/samba into ↵Jeremy Allison2008-02-0512-1019/+200
| | |\ | | | | | | | | | | | | v3-2-test
| | | * Remove most of SAM_UNK_INFO marshalling.Günther Deschner2008-02-062-468/+0
| | | | | | | | | | | | | | | | Guenther
| | | * Remove unused marshalling for SAMR_SET_DOMAIN_INFO.Günther Deschner2008-02-063-179/+0
| | | | | | | | | | | | | | | | Guenther
| | | * Remove unused marshalling for SAMR_QUERY_DOMAIN_INFO.Günther Deschner2008-02-063-215/+0
| | | | | | | | | | | | | | | | Guenther
| | | * Use rpccli_samr_QueryDomainInfo() in winbindd.Günther Deschner2008-02-067-85/+106
| | | | | | | | | | | | | | | | Guenther
| | | * Use rpccli_samr_QueryDomainInfo() in net_rpc_sh_acct.c.Günther Deschner2008-02-061-61/+83
| | | | | | | | | | | | | | | | Guenther
| | | * Use rpccli_samr_QueryDomainInfo() in net rpc.Günther Deschner2008-02-061-11/+11
| | | | | | | | | | | | | | | | Guenther
| | * | Don't return true on talloc fail.Jeremy Allison2008-02-051-0/+12
| | |/ | | | | | | | | | Jeremy.
| | * Use rpccli_samr_QueryDomainInfo() in rpcclient.Günther Deschner2008-02-061-69/+63
| | | | | | | | | | | | Guenther
| | * Use pidl for _samr_SetDomainInfo().Günther Deschner2008-02-062-54/+19
| | | | | | | | | | | | Guenther
| | * Remove unused marshalling for SAMR_QUERY_DOMAIN_INFO2.Günther Deschner2008-02-063-207/+0
| | | | | | | | | | | | Guenther
| | * Use pidl for _samr_QueryDomainInfo() and _samr_QueryDomainInfo2().Günther Deschner2008-02-062-114/+76
| | | | | | | | | | | | Guenther
| | * Add some helper init routines for samr_DomInfo structures.Günther Deschner2008-02-061-0/+143
| | | | | | | | | | | | | | | | | | They will probably move to another place later. Guenther
| | * Re-run make idl.Günther Deschner2008-02-065-20/+52
| | | | | | | | | | | | Guenther
| | * Fix IDL for samr_QueryDomainInfo and samr_QueryDomainInfo2.Günther Deschner2008-02-061-2/+2
| | | | | | | | | | | | Guenther
| | * Remove unused headers for SAMR_SET_SEC_OBJ.Günther Deschner2008-02-061-21/+0
| | | | | | | | | | | | Guenther
| | * Small whitespace cleanup + check for null returns on talloc_strdup.Jeremy Allison2008-02-051-8/+12
| | | | | | | | | | | | Jeremy.
| | * The krb5 locator should now be correctly able to handleJeremy Allison2008-02-051-4/+4
| | | | | | | | | | | | | | | | | | | | | IPV6, so (a) use the correct #ifdef (it's HAVE_IPV6, not HAVE_IPv6) and (b) don't deliberately terminate on an IPv6 address family. Jeremy.
| | * Fix a couple of "might be used uninitialized" warnings.Jeremy Allison2008-02-051-2/+2
| | | | | | | | | | | | Jeremy.
| | * Fix a debug messageVolker Lendecke2008-02-051-1/+1
| | |
| | * Fix typo.Karolin Seeger2008-02-051-1/+1
| | | | | | | | | | | | Karolin
| | * Fix typo.Karolin Seeger2008-02-051-1/+1
| | | | | | | | | | | | Karolin
| | * Fix _samr_Connect5(). Yes we do pretend to be > w2k all the time :)Günther Deschner2008-02-051-1/+1
| | | | | | | | | | | | Guenther
| | * Use SAMR_CONNECT_W2K for samr_Connect4 in rpcclient.Günther Deschner2008-02-051-1/+1
| | | | | | | | | | | | Guenther
| | * Re-run make idl.Günther Deschner2008-02-055-11/+53
| | | | | | | | | | | | Guenther
| | * Remove unused marshalling for SAMR_REMOVE_SID_FOREIGN_DOMAIN.Günther Deschner2008-02-053-116/+0
| | | | | | | | | | | | Guenther
| | * Use rpccli_samr_RemoveMemberFromForeignDomain() in net.Günther Deschner2008-02-051-3/+3
| | | | | | | | | | | | Guenther
| | * Use pidl for _samr_RemoveMemberFromForeignDomain().Günther Deschner2008-02-052-42/+10
| | | | | | | | | | | | Guenther
| | * Remove unused marshalling for SAMR_QUERY_USERALIASES.Günther Deschner2008-02-053-267/+0
| | | | | | | | | | | | Guenther
| | * Remove unused marshalling for SAMR_QUERY_GROUPMEM.Günther Deschner2008-02-053-200/+0
| | | | | | | | | | | | Guenther
| | * Use rpccli_samr_QueryGroupMember() all over the place.Günther Deschner2008-02-053-30/+42
| | | | | | | | | | | | Guenther
| | * Augment the samr_Connect4 callVolker Lendecke2008-02-051-3/+9
| | |
| | * Remove trailing while space, just couldn't resist. No code change.Günther Deschner2008-02-052-341/+341
| | | | | | | | | | | | Guenther