Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | configure: fix typo in GNU ld version-script test. | Michael Adam | 2008-09-05 | 1 | -1/+1 | |
| | | | | Michael | |||||
* | Add workaround for docs build and dependency on parameters.all.xml | Gerald (Jerry) Carter | 2008-09-05 | 1 | -2/+5 | |
| | | | | (cherry picked from commit d4f5b5255f9b95050ddd9d67bd3958402be77918) | |||||
* | Fix winbindd crash bug with trusted domains. Bug #5736 | James Ding | 2008-09-04 | 1 | -0/+2 | |
| | ||||||
* | Merge branch 'v3-devel' of ssh://git.samba.org/data/git/samba into v3-devel | Herb Lewis | 2008-09-04 | 3 | -11/+18 | |
|\ | ||||||
| * | Use different variable names for talloc and tdb object file names than | Jelmer Vernooij | 2008-09-04 | 2 | -11/+8 | |
| | | | | | | | | Samba 4. | |||||
| * | Ignore unused pidl-generated files. | Jelmer Vernooij | 2008-09-04 | 1 | -0/+10 | |
| | | ||||||
* | | get rid of unneeded argument in get_methods and get_alloc_methods | Herb Lewis | 2008-09-04 | 1 | -14/+9 | |
|/ | ||||||
* | Merge branch 'v3-devel' of ssh://jra@git.samba.org/data/git/samba into v3-devel | Jeremy Allison | 2008-09-04 | 2 | -38/+43 | |
|\ | ||||||
| * | kerberos: fix indent of enc type lines in generated krb5.conf files. | Günther Deschner | 2008-09-04 | 1 | -3/+3 | |
| | | | | | | | | Guenther | |||||
| * | man pages: Several fixes for man wbinfo. | Karolin Seeger | 2008-09-04 | 1 | -35/+40 | |
| | | | | | | | | | | | | | | | | -Tag replaceables -Fix typos -Unify indentation Karolin | |||||
* | | Cleanup of DC enumeration in get_dcs() | Steven Danneman | 2008-09-04 | 3 | -30/+91 | |
|/ | | | | | | | | | | | This is a fix for a few small inefficiencies/bugs in the get_dcs() path. * because the third add_one_dc_unique() loop was outside the ADS check all DCs returned from the non-sitename lookup were being tacked onto the dc_name_ip list twice. * add_one_dc_unique() now checks if the given IP address already exists before adding it to the list, making the returned list actually unique * added more thorough doxygen comment headers | |||||
* | Fix bug #5729. Explicitly allow "-valid". | Jeremy Allison | 2008-09-03 | 1 | -1/+1 | |
| | | | | Jeremy | |||||
* | Revert "Split lookup_name() and create a new functiong called" | Simo Sorce | 2008-09-03 | 5 | -117/+110 | |
| | | | | This reverts commit 8594edf666c29fd4ddf1780da842683dd81483b6. | |||||
* | The msync manpage reports that msync *must* be called before munmap. Failure ↵ | Simo Sorce | 2008-09-03 | 2 | -2/+8 | |
| | | | | to do so may result in lost data. Fix an ifdef check, I really think we meant to check HAVE_MMAP here. | |||||
* | Merge branch 'v3-devel' of ssh://git.samba.org/data/git/samba into v3-devel | Simo Sorce | 2008-09-03 | 65 | -1365/+4322 | |
|\ | ||||||
| * | factor prs_append_some_data out of prs_append_some_prs_data | Volker Lendecke | 2008-09-03 | 2 | -9/+19 | |
| | | ||||||
| * | Tiny logic simplification: remove an else branch | Volker Lendecke | 2008-09-03 | 1 | -36/+33 | |
| | | ||||||
| * | winbindd: the ad trusted_domains call should return talloced strings. | Günther Deschner | 2008-09-02 | 1 | -2/+5 | |
| | | | | | | | | Guenther | |||||
| * | Remove unused CLI_DO_RPC macros | Volker Lendecke | 2008-09-02 | 1 | -48/+0 | |
| | | ||||||
| * | doserr: add WERR_WRONG_PASSWORD. | Günther Deschner | 2008-09-02 | 2 | -0/+3 | |
| | | | | | | | | Guenther | |||||
| * | Fix some nonempty blank lines | Volker Lendecke | 2008-09-01 | 3 | -33/+33 | |
| | | ||||||
| * | Slightly simplify logic: remove an else branch | Volker Lendecke | 2008-09-01 | 1 | -14/+11 | |
| | | ||||||
| * | Fix typo | Volker Lendecke | 2008-09-01 | 1 | -1/+1 | |
| | | ||||||
| * | Fix Coverity ID 587 | Volker Lendecke | 2008-09-01 | 1 | -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 | |||||
| * | Fix Coverity ID 589, dead code | Volker Lendecke | 2008-08-31 | 1 | -0/+9 | |
| | | ||||||
| * | Remove a duplicate retval check | Volker Lendecke | 2008-08-31 | 1 | -8/+2 | |
| | | | | | | | | Jeremy, please check! | |||||
| * | Fix Coverity ID 592 | Volker Lendecke | 2008-08-31 | 1 | -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. | |||||
| * | Merge branch 'v3-devel' of ssh://jra@git.samba.org/data/git/samba into v3-devel | Jeremy Allison | 2008-08-29 | 33 | -821/+2736 | |
| |\ | ||||||
| | * | packaging(RHEL-CTDB): add the cifs.upcall manpage to package. | Michael Adam | 2008-08-29 | 1 | -0/+1 | |
| | | | | | | | | | | | | Michael | |||||
| | * | packaging(RHEL-CTDB): Add the ldbtools' manpages to the package. | Michael Adam | 2008-08-29 | 1 | -0/+5 | |
| | | | | | | | | | | | | Michael | |||||
| | * | packaging(RHEL-CTDB): fix direction of symlink for libnss_winbind.so.2 | Michael Adam | 2008-08-29 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | This is a workaround, until we have proper creation of libnss_winbind.so.2 and .so as a symlink from the Makefile. Michael | |||||
| | * | packaging(RHEL-CTDB): move libnss_winbind.so bits closer together | Michael Adam | 2008-08-29 | 1 | -1/+5 | |
| | | | | | | | | | | | | | | | | | | and comment on commented out libnss_wins.so installation Michael | |||||
| | * | packaging(RHEL-CTDB): remove duplicate installation of pam_smbpass.so | Michael Adam | 2008-08-29 | 1 | -3/+0 | |
| | | | | | | | | | | | | Michael | |||||
| | * | packaging(RHEL-CTDB): remove library packaging hacks due to fixed Makfile. | Michael Adam | 2008-08-29 | 1 | -48/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Use --libdir instead of --with-libdir . Use new --with-modulesdir to separate LIBDIR and MODULESDIR. This makes post "make install" hacks unnecessary. Michael | |||||
| | * | packaging(RHEL-CTDB): remove unused variable from makerpms.sh | Michael Adam | 2008-08-29 | 1 | -1/+0 | |
| | | | | | | | | | | | | Michael | |||||
| | * | packaging(RHEL-CTDB): auto-detect samba version from spec in makerpms.sh | Michael Adam | 2008-08-29 | 1 | -3/+3 | |
| | | | | | | | | | | | | Michael | |||||
| | * | libnet_join: streamline logic of libnet_join_post_processing() | Michael Adam | 2008-08-29 | 1 | -9/+11 | |
| | | | | | | | | | | | | Michael | |||||
| | * | libnet: fix join by creating keytab after changing the config. | Michael Adam | 2008-08-29 | 1 | -10/+11 | |
| | | | | | | | | | | | | Michael | |||||
| | * | wbinfo: add change-user-password command. | Günther Deschner | 2008-08-29 | 1 | -1/+33 | |
| | | | | | | | | | | | | Guenther | |||||
| | * | libwbclient: add wbcChangeUserPassword and wbcChangeUserPasswordEx. | Günther Deschner | 2008-08-29 | 3 | -1/+350 | |
| | | | | | | | | | | | | Guenther | |||||
| | * | netapi: fix NetGetJoinableOUs_l. | Günther Deschner | 2008-08-29 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | It needs to try the dns domain name for the ads connection. Guenther | |||||
| | * | netapi: fix some warnings in netdomjoin-gui. | Günther Deschner | 2008-08-29 | 1 | -8/+20 | |
| | | | | | | | | | | | | Guenther | |||||
| | * | netapi: use NETSETUP join flags in examples. | Günther Deschner | 2008-08-29 | 3 | -15/+12 | |
| | | | | | | | | | | | | Guenther | |||||
| | * | netapi: add NetJoinFlags to public header. | Günther Deschner | 2008-08-29 | 1 | -0/+14 | |
| | | | | | | | | | | | | Guenther | |||||
| | * | re-run make idl. | Günther Deschner | 2008-08-29 | 3 | -2/+52 | |
| | | | | | | | | | | | | Guenther | |||||
| | * | netapi: add NetJoinFlags to IDL. | Günther Deschner | 2008-08-29 | 1 | -2/+17 | |
| | | | | | | | | | | | | Guenther | |||||
| | * | netapi: add info21_to_USER_INFO_11 and support level 11 in NetUserEnum/GetInfo. | Günther Deschner | 2008-08-29 | 1 | -5/+45 | |
| | | | | | | | | | | | | Guenther | |||||
| | * | netapi: add info21_to_USER_INFO_4 and support level 4 in NetUserEnum/GetInfo. | Günther Deschner | 2008-08-29 | 1 | -2/+68 | |
| | | | | | | | | | | | | Guenther | |||||
| | * | netapi: add info21_to_USER_INFO_3 and support level 3 in NetUserEnum/GetInfo. | Günther Deschner | 2008-08-29 | 1 | -2/+54 | |
| | | | | | | | | | | | | Guenther | |||||
| | * | netapi: add info21_to_USER_INFO_2 and support level 2 in NetUserEnum/GetInfo. | Günther Deschner | 2008-08-29 | 1 | -2/+50 | |
| | | | | | | | | | | | | Guenther |