summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * r19133: More C++ warnings -- Merge across?Volker Lendecke2006-10-061-6/+12
| | |
| | * r19132: Fix some C++ warnings. Is there interest to have them in Samba4 as well?Volker Lendecke2006-10-066-14/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I have some problems resolving the last 3 ones in attrib_handlers.c. In line 251 the function ldb_dn_explode_casefold is called with mem_ctx as the first argument. Looking at ldb_dn_explode_casefold I see that the first argument it expects is a struct ldb_context. I could certainly add a cast to (struct ldb_context *) to that call, but I would assume that this is the wrong fix. Is it possible that attrib_handlers.c:251 and :254 should have ldb and not mem_ctx as the first argument? Can anybody from Samba4 clarify this for me and apply the correct fix? Thanks a lot. Volker
| | * r19130: fix the logic for the AC_PROG_CC_C99 checkStefan Metzmacher2006-10-061-1/+1
| | | | | | | | | | | | metze
| | * r19127: Fix bug 4152Volker Lendecke2006-10-061-0/+6
| | |
| | * r19126: Fix some uninitialized variable warningsVolker Lendecke2006-10-061-4/+7
| | |
| | * r19125: merge from samba4Andrew Tridgell2006-10-063-45/+44
| | |
| | * r19124: merge from samba4:Stefan Metzmacher2006-10-061-1/+1
| | | | | | | | | | | | | | | | | | pass LDFLAGS from configure to Makefile metze
| | * r19121: try to get rid of the difference between in system/iconv.hStefan Metzmacher2006-10-061-6/+16
| | | | | | | | | | | | | | | | | | between samba 3 and 4. metze
| | * r19119: try to be more portable...Stefan Metzmacher2006-10-061-7/+7
| | | | | | | | | | | | metze
| | * r19105: Ok - this is currently untested (but I'm testing it atJeremy Allison2006-10-063-43/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the moment) but winbindd isn't run in the build farm so hopefully won't break anything too badly - I don't want to lose this. If winbindd starts offline then it falls back to using MS-RPC backend. On going online it needs to reset the backend and try and go to using the AD backend code if possible, as the MS-RPC sequence number fetch just returns 1 as the sequence number if run against an AD DC. In addition, the winbindd async child may end up with the AD backend whilst the main winbindd - which still contacts the DC for some non-async calls, is left using MS-RPC. This can cause some trouble (as you can imagine :-). Attempt to ensure both main winbindd and async children us AD backends on going online. Jeremy.
| | * r19104: Fix from Björn JACKE <bjoern@j3e.de>Jeremy Allison2006-10-051-1/+1
| | | | | | | | | | | | | | | "here's a small fix for gdb_backtrace." Jeremy.
| | * r19103: From "Björn JACKE <bjoern@j3e.DE>":Jeremy Allison2006-10-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The attached patch cleans up pam_winbind a tiny bit. Instead of making exceptions for all pam implementations except for Linux' it's better to make an exception for the only pam implementation which is different from all the others. This is equivalent to what pam_smb_auth does already. ----------------- Jeremy
| | * r19102: fix typo, thanks derrell!Stefan Metzmacher2006-10-051-1/+1
| | | | | | | | | | | | metze
| | * r19101: add sys_recv() wrapperStefan Metzmacher2006-10-051-1/+14
| | | | | | | | | | | | metze
| | * r19100: merge from samba4:Stefan Metzmacher2006-10-051-5/+20
| | | | | | | | | | | | | | | | | | | | | | | | export MAKE_TEST_ENABLE_PCAP=yes enables SOCKET_WRAPPER_PCAP_FILE support in make test metze
| | * r19099: merge socket wrapper changes from samba4Stefan Metzmacher2006-10-051-14/+306
| | | | | | | | | | | | | | | | | | | | | | | | | | | including SOCKET_WRAPPER_PCAP_FILE support but I just noticed that samba don't use recv()/send() on the socket, so the capture only contain connect()/close() metze
| | * r19096: - fix the build with included poptStefan Metzmacher2006-10-051-3/+3
| | | | | | | | | | | | | | | | | | - and fix some whitespaces metze
| | * r19095: Fix some compile warnings.Günther Deschner2006-10-051-2/+2
| | | | | | | | | | | | Guenther
| | * r19094: Fix debug statement.Günther Deschner2006-10-051-1/+1
| | | | | | | | | | | | Guenther
| | * r19093: speed up the samba3 build from 8mins to 5mins:-)Stefan Metzmacher2006-10-052-282/+252
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | we now don't compile mostly each .c file twice. - we use PICFLAG for all object files - PICFLAG defaults to PIE_CFLAGS and is then overwritten if the system supports shared libraries as we currently always use -fPIE if available (and at least on linux -fPIE produces the same code as -fPIC) it doesn't change anything in the resulting code. "high performance" binaries can be build with "--disable-pie --disable-shared" if someone really needs to... metze
| | * r19090: - the LIBREPLACE_C99 isn't needed in aclocal.m4Stefan Metzmacher2006-10-051-76/+0
| | | | | | | | | | | | | | | | | | - including the ldb configure tests via aclocal.m4 is wrong metze
| | * r19089: normalize KRB5_LIBS tooStefan Metzmacher2006-10-051-0/+1
| | | | | | | | | | | | metze
| | * r19088: filter out -Wl,-rpath combinations with /usr/lib tooStefan Metzmacher2006-10-051-5/+24
| | | | | | | | | | | | metze
| | * r19087: normalize vars before printing themStefan Metzmacher2006-10-051-8/+8
| | | | | | | | | | | | metze
| | * r19086: fix --disable-pie together with -CStefan Metzmacher2006-10-051-5/+5
| | | | | | | | | | | | metze
| | * r19085: merge from samba4:Stefan Metzmacher2006-10-051-0/+242
| | | | | | | | | | | | | | | | | | | | | - source and destination address handling - tcp handling metze
| | * r19083: Fix objectclassVolker Lendecke2006-10-051-1/+1
| | |
| | * r19080: Fix a potential NULL dereferenceVolker Lendecke2006-10-041-0/+7
| | |
| | * r19079: talloc_array can failVolker Lendecke2006-10-041-0/+1
| | |
| | * r19078: talloc_strdup can failVolker Lendecke2006-10-041-0/+6
| | |
| | * r19077: Fix an uninitialized variableVolker Lendecke2006-10-041-2/+2
| | |
| | * r19076: ldb_dn_copy_partial can failVolker Lendecke2006-10-041-0/+1
| | |
| | * r19075: Fix a potential NULL dereferenceVolker Lendecke2006-10-041-0/+4
| | |
| | * r19073: mapping_dn can failVolker Lendecke2006-10-041-2/+15
| | |
| | * r19072: Fix a potential NULL dereference. Simo/Tridge, not merging yet to ↵Volker Lendecke2006-10-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | 4_0, I'd like you to comment. Volker
| | * r19071: Backport to SAMBA_3_0 as wellSimo Sorce2006-10-041-2/+2
| | |
| | * r19070: If there's an error in the data struct, there's no point to continue ↵Volker Lendecke2006-10-041-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | with asn1_pop_tag. Volker
| | * r19067: Fix a potential NULL dereferenceVolker Lendecke2006-10-041-0/+4
| | |
| | * r19066: Fix a memleakVolker Lendecke2006-10-041-0/+1
| | |
| | * r19065: No functional change, just a trivial simplificationVolker Lendecke2006-10-041-19/+19
| | |
| | * r19064: This code block is already #ifdef'ed by WITH_ADS which should implyVolker Lendecke2006-10-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | HAVE_KRB5. If WITH_ADS does not imply KRB5, we have to fix that. Lets see what the build farm thinks about this. Volker
| | * r19062: try to fix the valgrind noise in the build-farmStefan Metzmacher2006-10-041-9/+68
| | | | | | | | | | | | metze
| | * r19060: Attempt to fix the valgrind suppressions for "fort"Volker Lendecke2006-10-041-49/+11
| | |
| | * r19058: Implement "user cannot change password", and complete "user must changeJim McDonough2006-10-038-117/+163
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | password at next logon" code. The "password last set time" of zero now means "user must change password", because that's how windows seems to use it. The "can change" and "must change" times are now calculated based on the "last set" time and policies. We use the "can change" field now to indicate that a user cannot change a password by putting MAX_TIME_T in it (so long as "last set" time isn't zero). Based on this, we set the password-can-change bit in the faked secdesc.
| | * r19054: Callers of gencache may not have the rights toJeremy Allison2006-10-021-0/+18
| | | | | | | | | | | | | | | open read/write. Allow them to fallback to read-only. Jeremy
| | * r19046: It does not do much yet, but activate RPC-SAMBA3-SPOOLSSVolker Lendecke2006-10-021-1/+1
| | |
| | * r19043: There's no point in #ifdef'ing the detection whether we were offered ↵Volker Lendecke2006-10-021-8/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | KRB5 in SPNEGO, as long as we don't make use of it without krb libs. Makes the code a bit simpler. Volker
| | * r19042: Fix the non-krb5 build. This needs sooo severe cleanup ... :-)Volker Lendecke2006-10-021-0/+2
| | | | | | | | | | | | Volker
| | * r19041: Make us connect to Vista RC1. Apparently metze had done the same ↵Volker Lendecke2006-10-022-8/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | patch some weeks ago. We have some work before us, when in AD mode Vista sends "not_defined_in_RFC4178@please_ignore" as the principal..... Volker
| | * r19040: use more portable shellscripting, hopefully give better results on Tru64Stefan Metzmacher2006-10-021-2/+2
| | | | | | | | | | | | metze