summaryrefslogtreecommitdiff
path: root/source3
AgeCommit message (Collapse)AuthorFilesLines
2007-10-10r19132: Fix some C++ warnings. Is there interest to have them in Samba4 as well?Volker Lendecke6-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 (This used to be commit 26f2cb71ebf00b2c6f356da5f32384f7fa083521)
2007-10-10r19130: fix the logic for the AC_PROG_CC_C99 checkStefan Metzmacher1-1/+1
metze (This used to be commit 21516dc5ac95e7e5d6a7d7f890d42742b36f2454)
2007-10-10r19127: Fix bug 4152Volker Lendecke1-0/+6
(This used to be commit 70038e8f7b3042c2732e7f8267cab0499972a819)
2007-10-10r19126: Fix some uninitialized variable warningsVolker Lendecke1-4/+7
(This used to be commit 90bfa3461038f5d179525dec0cf5b3f137e927e0)
2007-10-10r19125: merge from samba4Andrew Tridgell3-45/+44
(This used to be commit 65e1500ae6b5ca6334a63f4a18272568202bc048)
2007-10-10r19124: merge from samba4:Stefan Metzmacher1-1/+1
pass LDFLAGS from configure to Makefile metze (This used to be commit 7ba9fddacb97153405bf0bec16b3a868e4e323e0)
2007-10-10r19121: try to get rid of the difference between in system/iconv.hStefan Metzmacher1-6/+16
between samba 3 and 4. metze (This used to be commit 04031a9fca037ad77cca0ba0da6801d5017521ba)
2007-10-10r19119: try to be more portable...Stefan Metzmacher1-7/+7
metze (This used to be commit 380e647534730313ee57d1acf2756708b7c9676d)
2007-10-10r19105: Ok - this is currently untested (but I'm testing it atJeremy Allison3-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. (This used to be commit 5efd4b04b89ace4b264e9ac37a90e202749792be)
2007-10-10r19104: Fix from Björn JACKE <bjoern@j3e.de>Jeremy Allison1-1/+1
"here's a small fix for gdb_backtrace." Jeremy. (This used to be commit a0b4e5d11857cd067c60dd99dc5f00ee62a1354d)
2007-10-10r19103: From "Björn JACKE <bjoern@j3e.DE>":Jeremy Allison1-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 (This used to be commit 8e5596470822d20740f86585a6cf67240f2face4)
2007-10-10r19102: fix typo, thanks derrell!Stefan Metzmacher1-1/+1
metze (This used to be commit 0a516c3026114a32092f4a62fcbbfc4c410c0dea)
2007-10-10r19101: add sys_recv() wrapperStefan Metzmacher1-1/+14
metze (This used to be commit 2f146ec68344c4bc11e1a9d174bdf548e1a22d5a)
2007-10-10r19100: merge from samba4:Stefan Metzmacher1-5/+20
export MAKE_TEST_ENABLE_PCAP=yes enables SOCKET_WRAPPER_PCAP_FILE support in make test metze (This used to be commit 5faf816885b7a1bca5a25ab1ef5151d4e364cbda)
2007-10-10r19099: merge socket wrapper changes from samba4Stefan Metzmacher1-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 (This used to be commit b894e33023738b5d6121c56e9c0b34b12f3e0005)
2007-10-10r19096: - fix the build with included poptStefan Metzmacher1-3/+3
- and fix some whitespaces metze (This used to be commit 4906e601511fc2056393d8519bb249e5cce926e4)
2007-10-10r19095: Fix some compile warnings.Günther Deschner1-2/+2
Guenther (This used to be commit a0d19e1ebe694b089d40d67ea4f26e076af53ff9)
2007-10-10r19094: Fix debug statement.Günther Deschner1-1/+1
Guenther (This used to be commit e99696c97052d4ba962e11fcb7b6ea530350913d)
2007-10-10r19093: speed up the samba3 build from 8mins to 5mins:-)Stefan Metzmacher2-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 (This used to be commit 6db1f57f45bf0b382572aec72dda29657c4a5c3f)
2007-10-10r19090: - the LIBREPLACE_C99 isn't needed in aclocal.m4Stefan Metzmacher1-76/+0
- including the ldb configure tests via aclocal.m4 is wrong metze (This used to be commit cd4b1cf0e7ced553c691ea0e34fd764577d88dce)
2007-10-10r19089: normalize KRB5_LIBS tooStefan Metzmacher1-0/+1
metze (This used to be commit c7788f6c7183a139f1aa572880faef5bd185d1c0)
2007-10-10r19088: filter out -Wl,-rpath combinations with /usr/lib tooStefan Metzmacher1-5/+24
metze (This used to be commit 52ffc8b12c53d4a65e31385108b34a20f1c74326)
2007-10-10r19087: normalize vars before printing themStefan Metzmacher1-8/+8
metze (This used to be commit 9900abf8ab97113ed33b84e3701d89cbc2cc2a76)
2007-10-10r19086: fix --disable-pie together with -CStefan Metzmacher1-5/+5
metze (This used to be commit 035579b62c76e370356cb4a6ba5f652ac68b5862)
2007-10-10r19085: merge from samba4:Stefan Metzmacher1-0/+242
- source and destination address handling - tcp handling metze (This used to be commit 98154fd43350f3edae54423756620a48e089f96d)
2007-10-10r19083: Fix objectclassVolker Lendecke1-1/+1
(This used to be commit 6c4d68d84987a88f91bca976a0396dff720043e5)
2007-10-10r19080: Fix a potential NULL dereferenceVolker Lendecke1-0/+7
(This used to be commit 682b490c23bb88a1a570bd1fcb7d2b6aa778dd14)
2007-10-10r19079: talloc_array can failVolker Lendecke1-0/+1
(This used to be commit 7b6738522a80740824f3b96e73e7c48a0623b1b1)
2007-10-10r19078: talloc_strdup can failVolker Lendecke1-0/+6
(This used to be commit 2b3b9ce2a122ec5fd945728c117c321087d85203)
2007-10-10r19077: Fix an uninitialized variableVolker Lendecke1-2/+2
(This used to be commit 6bc2cce645af94274a5959312c52799c221b0899)
2007-10-10r19076: ldb_dn_copy_partial can failVolker Lendecke1-0/+1
(This used to be commit c247cf3fba13ce1a32878efcc922eadfcbc2b092)
2007-10-10r19075: Fix a potential NULL dereferenceVolker Lendecke1-0/+4
(This used to be commit 0ab5d7692c2c0fe798a067866cb236ea9c304463)
2007-10-10r19073: mapping_dn can failVolker Lendecke1-2/+15
(This used to be commit d234f39c79e0e50f784826d0920ebd21cc9a283d)
2007-10-10r19072: Fix a potential NULL dereference. Simo/Tridge, not merging yet to ↵Volker Lendecke1-1/+1
4_0, I'd like you to comment. Volker (This used to be commit ba18c58f1fb618447ba39bae6ef8f4e6c00c4d32)
2007-10-10r19071: Backport to SAMBA_3_0 as wellSimo Sorce1-2/+2
(This used to be commit df148a5def06956ecd8392d259f1c408c62100fa)
2007-10-10r19070: If there's an error in the data struct, there's no point to continue ↵Volker Lendecke1-0/+4
with asn1_pop_tag. Volker (This used to be commit d18e9f1da9a22aa16860aa2a91e7c788d28d3314)
2007-10-10r19067: Fix a potential NULL dereferenceVolker Lendecke1-0/+4
(This used to be commit 6a8937ed03f0ee62eb81da798e0c38b405d44731)
2007-10-10r19066: Fix a memleakVolker Lendecke1-0/+1
(This used to be commit c53e2e54750764c9a0eb57a86fd226b4f8711a66)
2007-10-10r19065: No functional change, just a trivial simplificationVolker Lendecke1-19/+19
(This used to be commit 45628f71cfc770b1ba67abf38aac53ac40773cd0)
2007-10-10r19064: This code block is already #ifdef'ed by WITH_ADS which should implyVolker Lendecke1-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 (This used to be commit 27b063078dff0d8c5eb552dd73825f6858d04e4b)
2007-10-10r19062: try to fix the valgrind noise in the build-farmStefan Metzmacher1-9/+68
metze (This used to be commit 9cb182507c8e168a94db0b0e290fd124be1bac11)
2007-10-10r19060: Attempt to fix the valgrind suppressions for "fort"Volker Lendecke1-49/+11
(This used to be commit f8c4578f913bed3bdd7b6785cb402b961f719603)
2007-10-10r19058: Implement "user cannot change password", and complete "user must changeJim McDonough8-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. (This used to be commit 21abbeaee9b7f7cff1d34d048463c30cda44a2e3)
2007-10-10r19054: Callers of gencache may not have the rights toJeremy Allison1-0/+18
open read/write. Allow them to fallback to read-only. Jeremy (This used to be commit ec526e1b882e3ade23f90c5e3d637c72b6839da5)
2007-10-10r19046: It does not do much yet, but activate RPC-SAMBA3-SPOOLSSVolker Lendecke1-1/+1
(This used to be commit 3bf313240c8dcabc28a2fbf35a68daf8274cf659)
2007-10-10r19043: There's no point in #ifdef'ing the detection whether we were offered ↵Volker Lendecke1-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 (This used to be commit 23549e6c082e92e45ced4eee215bcc0094b2a88b)
2007-10-10r19042: Fix the non-krb5 build. This needs sooo severe cleanup ... :-)Volker Lendecke1-0/+2
Volker (This used to be commit b601fc42cb289366b7c522f41aa4c66920006890)
2007-10-10r19041: Make us connect to Vista RC1. Apparently metze had done the same ↵Volker Lendecke2-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 (This used to be commit af85d8ec02b36b765ceadf0a342c7eda2410034b)
2007-10-10r19040: use more portable shellscripting, hopefully give better results on Tru64Stefan Metzmacher1-2/+2
metze (This used to be commit e8dd73f79656d9ef6faf9fceb84dc8702ac8e10a)
2007-10-10r19039: Do not segfault in "net ads printer info" when a requested printserverGünther Deschner2-1/+12
does not exist. Guenther (This used to be commit 359315021df3a4dbfe5142e529e3efdbc49e405c)